MCPcopy Create free account
hub / github.com/apache/paimon-rust / resolve_table_name

Method resolve_table_name

crates/integrations/datafusion/src/sql_context.rs:1295–1298  ·  view source on GitHub ↗

Resolve an ObjectName to just the Identifier (for backward compat in handle_alter_table).

(&self, name: &ObjectName)

Source from the content-addressed store, hash-verified

1293
1294 /// Resolve an ObjectName to just the Identifier (for backward compat in handle_alter_table).
1295 fn resolve_table_name(&self, name: &ObjectName) -> DFResult<Identifier> {
1296 let (_catalog, _catalog_name, identifier) = self.resolve_catalog_and_table(name)?;
1297 Ok(identifier)
1298 }
1299}
1300
1301/// Quick check whether the SQL looks like a CREATE TABLE statement.

Calls 1