Returns the first target expression and its index.
(&self)
| 1022 | impl ProjectionTargets { |
| 1023 | /// Returns the first target expression and its index. |
| 1024 | pub fn first(&self) -> &(Arc<dyn PhysicalExpr>, usize) { |
| 1025 | // Since the vector is non-empty, we can safely unwrap: |
| 1026 | self.exprs_indices.first().unwrap() |
| 1027 | } |
| 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)) { |
no outgoing calls