Append to each row a single `scalar`.
(self, scalar: MirScalarExpr)
| 1190 | |
| 1191 | /// Append to each row a single `scalar`. |
| 1192 | pub fn map_one(self, scalar: MirScalarExpr) -> Self { |
| 1193 | self.map(vec![scalar]) |
| 1194 | } |
| 1195 | |
| 1196 | /// Like `map`, but yields zero-or-more output rows per input row |
| 1197 | pub fn flat_map(self, func: TableFunc, exprs: Vec<MirScalarExpr>) -> Self { |
no test coverage detected