(plan: Arc<dyn PhysicalExpr>)
| 70 | |
| 71 | impl<T: Default> ExprContext<T> { |
| 72 | pub fn new_default(plan: Arc<dyn PhysicalExpr>) -> Self { |
| 73 | let children = plan |
| 74 | .children() |
| 75 | .into_iter() |
| 76 | .cloned() |
| 77 | .map(Self::new_default) |
| 78 | .collect(); |
| 79 | Self::new(plan, Default::default(), children) |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | impl<T: Display> Display for ExprContext<T> { |