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)
| 490 | /// Warning: These implementations are currently defective for WITH ORDINALITY / FROM ROWS, see |
| 491 | /// comment in `plan_table_function_internal`. |
| 492 | fn sql_impl_table_func(sql: &'static str) -> Operation<TableFuncPlan> { |
| 493 | sql_impl_table_func_inner(sql, None) |
| 494 | } |
| 495 | |
| 496 | fn experimental_sql_impl_table_func( |
| 497 | feature: &'static vars::FeatureFlag, |
nothing calls this directly
no test coverage detected