(
feature: &'static vars::FeatureFlag,
sql: &'static str,
)
| 494 | } |
| 495 | |
| 496 | fn experimental_sql_impl_table_func( |
| 497 | feature: &'static vars::FeatureFlag, |
| 498 | sql: &'static str, |
| 499 | ) -> Operation<TableFuncPlan> { |
| 500 | sql_impl_table_func_inner(sql, Some(feature)) |
| 501 | } |
| 502 | |
| 503 | /// Describes a single function's implementation. |
| 504 | pub struct FuncImpl<R> { |
nothing calls this directly
no test coverage detected