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

Method table

datafusion/common/src/table_reference.rs:165–171  ·  view source on GitHub ↗

Retrieve the table name, regardless of qualification.

(&self)

Source from the content-addressed store, hash-verified

163
164 /// Retrieve the table name, regardless of qualification.
165 pub fn table(&self) -> &str {
166 match self {
167 Self::Full { table, .. }
168 | Self::Partial { table, .. }
169 | Self::Bare { table } => table,
170 }
171 }
172
173 /// Retrieve the schema name if [`Self::Partial]` or [`Self::`Full`],
174 /// `None` otherwise.

Callers 1

resolved_eqMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected