Adds a target expression and its index to the list of targets.
(&mut self, target: (Arc<dyn PhysicalExpr>, usize))
| 1028 | |
| 1029 | /// Adds a target expression and its index to the list of targets. |
| 1030 | pub fn push(&mut self, target: (Arc<dyn PhysicalExpr>, usize)) { |
| 1031 | self.exprs_indices.push(target); |
| 1032 | } |
| 1033 | } |
| 1034 | |
| 1035 | impl Deref for ProjectionTargets { |
no outgoing calls