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

Function sql_impl_table_func

src/sql/src/func.rs:492–494  ·  view source on GitHub ↗

Implements a table function using SQL. Warning: These implementations are currently defective for WITH ORDINALITY / FROM ROWS, see comment in `plan_table_function_internal`.

(sql: &'static str)

Source from the content-addressed store, hash-verified

490/// Warning: These implementations are currently defective for WITH ORDINALITY / FROM ROWS, see
491/// comment in `plan_table_function_internal`.
492fn sql_impl_table_func(sql: &'static str) -> Operation<TableFuncPlan> {
493 sql_impl_table_func_inner(sql, None)
494}
495
496fn experimental_sql_impl_table_func(
497 feature: &'static vars::FeatureFlag,

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected