pub struct TableRef {
pub catalog: String,
pub schema: String,
pub table: String,
}Expand description
Fully-qualified three-level table identity (catalog.schema.table).
Names are carried verbatim; identifier-safety (quoting/validation) is applied
by the backend at DDL-emit time via twg-type-map::identifiers, not here.
Fields§
§catalog: StringCatalog (top-level namespace, e.g. a Unity Catalog catalog).
schema: StringSchema / database within the catalog.
table: StringTable name.
Implementations§
Trait Implementations§
impl Eq for TableRef
impl StructuralPartialEq for TableRef
Auto Trait Implementations§
impl Freeze for TableRef
impl RefUnwindSafe for TableRef
impl Send for TableRef
impl Sync for TableRef
impl Unpin for TableRef
impl UnwindSafe for TableRef
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more