The projection expressions stored as tuples of (expression, output column name)
(&self)
| 164 | |
| 165 | /// The projection expressions stored as tuples of (expression, output column name) |
| 166 | pub fn expr(&self) -> &[ProjectionExpr] { |
| 167 | self.projector.projection().as_ref() |
| 168 | } |
| 169 | |
| 170 | /// The projection expressions as a [`ProjectionExprs`]. |
| 171 | pub fn projection_expr(&self) -> &ProjectionExprs { |
no test coverage detected