(&self, plan_type: PlanType)
| 2210 | |
| 2211 | impl ToStringifiedPlan for LogicalPlan { |
| 2212 | fn to_stringified(&self, plan_type: PlanType) -> StringifiedPlan { |
| 2213 | StringifiedPlan::new(plan_type, self.display_indent().to_string()) |
| 2214 | } |
| 2215 | } |
| 2216 | |
| 2217 | /// Relationship produces 0 or 1 placeholder rows with specified output schema |
nothing calls this directly
no test coverage detected