Log the plan in debug/tracing mode after some part of the optimizer runs
(description: &str, plan: &LogicalPlan)
| 104 | |
| 105 | /// Log the plan in debug/tracing mode after some part of the optimizer runs |
| 106 | pub fn log_plan(description: &str, plan: &LogicalPlan) { |
| 107 | debug!("{description}:\n{}\n", plan.display_indent()); |
| 108 | trace!("{description}::\n{}\n", plan.display_indent_schema()); |
| 109 | } |
| 110 | |
| 111 | /// Determine whether a predicate can restrict NULLs. e.g. |
| 112 | /// `c0 > 8` return true; |
no outgoing calls
no test coverage detected
searching dependent graphs…