MCPcopy Create free account
hub / github.com/apache/datafusion / schema_name

Method schema_name

datafusion/common/src/schema_reference.rs:28–33  ·  view source on GitHub ↗

Get only the schema name that this references.

(&self)

Source from the content-addressed store, hash-verified

26impl SchemaReference {
27 /// Get only the schema name that this references.
28 pub fn schema_name(&self) -> &str {
29 match self {
30 SchemaReference::Bare { schema } => schema,
31 SchemaReference::Full { schema, catalog: _ } => schema,
32 }
33 }
34}
35
36impl std::fmt::Display for SchemaReference {

Calls

no outgoing calls