(ecx: &ExprContext, exprs: &[Expr<Aug>])
| 4183 | } |
| 4184 | |
| 4185 | fn plan_row(ecx: &ExprContext, exprs: &[Expr<Aug>]) -> Result<CoercibleScalarExpr, PlanError> { |
| 4186 | let mut out = vec![]; |
| 4187 | for e in exprs { |
| 4188 | out.push(plan_expr(ecx, e)?); |
| 4189 | } |
| 4190 | Ok(CoercibleScalarExpr::LiteralRecord(out)) |
| 4191 | } |
| 4192 | |
| 4193 | fn plan_cast( |
| 4194 | ecx: &ExprContext, |
no test coverage detected