Return the [`TableProviderFactory`] that is registered for the specified file type, if any.
(
&self,
file_type: &str,
)
| 555 | /// Return the [`TableProviderFactory`] that is registered for the |
| 556 | /// specified file type, if any. |
| 557 | pub fn table_factory( |
| 558 | &self, |
| 559 | file_type: &str, |
| 560 | ) -> Option<Arc<dyn TableProviderFactory>> { |
| 561 | self.state.read().table_factories().get(file_type).cloned() |
| 562 | } |
| 563 | |
| 564 | /// Return the `enable_ident_normalization` of this Session |
| 565 | pub fn enable_ident_normalization(&self) -> bool { |
nothing calls this directly
no test coverage detected