MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / plan_row

Function plan_row

src/sql/src/plan/query.rs:4185–4191  ·  view source on GitHub ↗
(ecx: &ExprContext, exprs: &[Expr<Aug>])

Source from the content-addressed store, hash-verified

4183}
4184
4185fn 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
4193fn plan_cast(
4194 ecx: &ExprContext,

Callers 1

plan_expr_innerFunction · 0.85

Calls 2

plan_exprFunction · 0.85
pushMethod · 0.45

Tested by

no test coverage detected