(
&self,
table_ref: impl Into<TableReference>,
)
| 329 | |
| 330 | impl SessionState { |
| 331 | pub(crate) fn resolve_table_ref( |
| 332 | &self, |
| 333 | table_ref: impl Into<TableReference>, |
| 334 | ) -> ResolvedTableReference { |
| 335 | let catalog = &self.config_options().catalog; |
| 336 | table_ref |
| 337 | .into() |
| 338 | .resolve(&catalog.default_catalog, &catalog.default_schema) |
| 339 | } |
| 340 | |
| 341 | /// Retrieve the [`SchemaProvider`] for a specific [`TableReference`], if it |
| 342 | /// exists. |