Get the table factories
(
&mut self,
)
| 420 | |
| 421 | /// Get the table factories |
| 422 | pub fn table_factories_mut( |
| 423 | &mut self, |
| 424 | ) -> &mut HashMap<String, Arc<dyn TableProviderFactory>> { |
| 425 | &mut self.table_factories |
| 426 | } |
| 427 | |
| 428 | /// Parse an SQL string into an DataFusion specific AST |
| 429 | /// [`Statement`]. See [`SessionContext::sql`] for running queries. |
no outgoing calls