Enum sqlparser::ast::SchemaName
source · pub enum SchemaName {
Simple(ObjectName),
UnnamedAuthorization(Ident),
NamedAuthorization(ObjectName, Ident),
}Expand description
Schema possible naming variants (1).
Variants§
Simple(ObjectName)
Only schema name specified: <schema name>.
UnnamedAuthorization(Ident)
Only authorization identifier specified: AUTHORIZATION <schema authorization identifier>.
NamedAuthorization(ObjectName, Ident)
Both schema name and authorization identifier specified: <schema name> AUTHORIZATION <schema authorization identifier>.
Trait Implementations§
source§impl Clone for SchemaName
impl Clone for SchemaName
source§fn clone(&self) -> SchemaName
fn clone(&self) -> SchemaName
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more