(&self, _exprs: &[Expr])
| 555 | note = "Implement `TableFunctionImpl::call_with_args` instead" |
| 556 | )] |
| 557 | fn call(&self, _exprs: &[Expr]) -> Result<Arc<dyn TableProvider>> { |
| 558 | internal_err!( |
| 559 | "TableFunctionImpl::call is not implemented. Implement TableFunctionImpl::call_with_args instead." |
| 560 | ) |
| 561 | } |
| 562 | |
| 563 | /// Create a table provider |
| 564 | fn call_with_args(&self, args: TableFunctionArgs) -> Result<Arc<dyn TableProvider>> { |
no outgoing calls