(&self, args: &[Expr])
| 598 | note = "Use `TableFunction::create_table_provider_with_args` instead" |
| 599 | )] |
| 600 | pub fn create_table_provider(&self, args: &[Expr]) -> Result<Arc<dyn TableProvider>> { |
| 601 | #[expect(deprecated)] |
| 602 | self.fun.call(args) |
| 603 | } |
| 604 | |
| 605 | /// Get the function implementation and generate a table |
| 606 | pub fn create_table_provider_with_args( |