Trait mz_sql::catalog::SessionCatalog

source ·
pub trait SessionCatalog: Debug + ExprHumanizer + Send + Sync + ConnectionResolver {
Show 59 methods // Required methods fn active_role_id(&self) -> &RoleId; fn active_database(&self) -> Option<&DatabaseId>; fn active_cluster(&self) -> &str; fn search_path(&self) -> &[(ResolvedDatabaseSpecifier, SchemaSpecifier)]; fn get_prepared_statement_desc(&self, name: &str) -> Option<&StatementDesc>; fn resolve_database( &self, database_name: &str ) -> Result<&dyn CatalogDatabase, CatalogError>; fn get_database(&self, id: &DatabaseId) -> &dyn CatalogDatabase; fn get_databases(&self) -> Vec<&dyn CatalogDatabase>; fn resolve_schema( &self, database_name: Option<&str>, schema_name: &str ) -> Result<&dyn CatalogSchema, CatalogError>; fn resolve_schema_in_database( &self, database_spec: &ResolvedDatabaseSpecifier, schema_name: &str ) -> Result<&dyn CatalogSchema, CatalogError>; fn get_schema( &self, database_spec: &ResolvedDatabaseSpecifier, schema_spec: &SchemaSpecifier ) -> &dyn CatalogSchema; fn get_schemas(&self) -> Vec<&dyn CatalogSchema>; fn get_mz_internal_schema_id(&self) -> &SchemaId; fn get_mz_unsafe_schema_id(&self) -> &SchemaId; fn is_system_schema(&self, schema: &str) -> bool; fn is_system_schema_specifier(&self, schema: &SchemaSpecifier) -> bool; fn resolve_role( &self, role_name: &str ) -> Result<&dyn CatalogRole, CatalogError>; fn try_get_role(&self, id: &RoleId) -> Option<&dyn CatalogRole>; fn get_role(&self, id: &RoleId) -> &dyn CatalogRole; fn get_roles(&self) -> Vec<&dyn CatalogRole>; fn mz_system_role_id(&self) -> RoleId; fn collect_role_membership(&self, id: &RoleId) -> BTreeSet<RoleId>; fn resolve_cluster<'a, 'b>( &'a self, cluster_name: Option<&'b str> ) -> Result<&dyn CatalogCluster<'a>, CatalogError>; fn resolve_cluster_replica<'a, 'b>( &'a self, cluster_replica_name: &'b QualifiedReplica ) -> Result<&dyn CatalogClusterReplica<'a>, CatalogError>; fn resolve_item( &self, item_name: &PartialItemName ) -> Result<&dyn CatalogItem, CatalogError>; fn resolve_function( &self, item_name: &PartialItemName ) -> Result<&dyn CatalogItem, CatalogError>; fn resolve_type( &self, item_name: &PartialItemName ) -> Result<&dyn CatalogItem, CatalogError>; fn get_system_type(&self, name: &str) -> &dyn CatalogItem; fn try_get_item(&self, id: &GlobalId) -> Option<&dyn CatalogItem>; fn get_item(&self, id: &GlobalId) -> &dyn CatalogItem; fn get_items(&self) -> Vec<&dyn CatalogItem>; fn get_item_by_name( &self, name: &QualifiedItemName ) -> Option<&dyn CatalogItem>; fn get_type_by_name( &self, name: &QualifiedItemName ) -> Option<&dyn CatalogItem>; fn get_cluster(&self, id: ClusterId) -> &dyn CatalogCluster<'_>; fn get_clusters(&self) -> Vec<&dyn CatalogCluster<'_>>; fn get_cluster_replica( &self, cluster_id: ClusterId, replica_id: ReplicaId ) -> &dyn CatalogClusterReplica<'_>; fn get_cluster_replicas(&self) -> Vec<&dyn CatalogClusterReplica<'_>>; fn get_system_privileges(&self) -> &PrivilegeMap; fn get_default_privileges( &self ) -> Vec<(&DefaultPrivilegeObject, Vec<&DefaultPrivilegeAclItem>)>; fn find_available_name(&self, name: QualifiedItemName) -> QualifiedItemName; fn resolve_full_name(&self, name: &QualifiedItemName) -> FullItemName; fn resolve_full_schema_name( &self, name: &QualifiedSchemaName ) -> FullSchemaName; fn config(&self) -> &CatalogConfig; fn now(&self) -> EpochMillis; fn aws_privatelink_availability_zones(&self) -> Option<BTreeSet<String>>; fn system_vars(&self) -> &SystemVars; fn system_vars_mut(&mut self) -> &mut SystemVars; fn get_owner_id(&self, id: &ObjectId) -> Option<RoleId>; fn get_privileges(&self, id: &SystemObjectId) -> Option<&PrivilegeMap>; fn object_dependents(&self, ids: &Vec<ObjectId>) -> Vec<ObjectId>; fn item_dependents(&self, id: GlobalId) -> Vec<ObjectId>; fn all_object_privileges(&self, object_type: SystemObjectType) -> AclMode; fn get_object_type(&self, object_id: &ObjectId) -> ObjectType; fn get_system_object_type(&self, id: &SystemObjectId) -> SystemObjectType; fn minimal_qualification( &self, qualified_name: &QualifiedItemName ) -> PartialItemName; fn add_notice(&self, notice: PlanNotice); fn get_item_comments( &self, id: &GlobalId ) -> Option<&BTreeMap<Option<usize>, String>>; // Provided methods fn active_database_name(&self) -> Option<&str> { ... } fn resolve_item_or_type( &self, name: &PartialItemName ) -> Result<&dyn CatalogItem, CatalogError> { ... }
}
Expand description

A catalog keeps track of SQL objects and session state available to the planner.

The sql crate is agnostic to any particular catalog implementation. This trait describes the required interface.

The SQL standard mandates a catalog hierarchy of exactly three layers. A catalog contains databases, databases contain schemas, and schemas contain catalog items, like sources, sinks, view, and indexes.

There are two classes of operations provided by a catalog:

  • Resolution operations, like resolve_item. These fill in missing name components based upon connection defaults, e.g., resolving the partial name view42 to the fully-specified name materialize.public.view42.

  • Lookup operations, like SessionCatalog::get_item. These retrieve metadata about a catalog entity based on a fully-specified name that is known to be valid (i.e., because the name was successfully resolved, or was constructed based on the output of a prior lookup operation). These functions panic if called with invalid input.

  • Session management, such as managing variables’ states and adding notices to the session.

Required Methods§

source

fn active_role_id(&self) -> &RoleId

Returns the id of the role that is issuing the query.

source

fn active_database(&self) -> Option<&DatabaseId>

Returns the database to use if one is not explicitly specified.

source

fn active_cluster(&self) -> &str

Returns the cluster to use if one is not explicitly specified.

source

fn search_path(&self) -> &[(ResolvedDatabaseSpecifier, SchemaSpecifier)]

Returns the resolved search paths for the current user. (Invalid search paths are skipped.)

source

fn get_prepared_statement_desc(&self, name: &str) -> Option<&StatementDesc>

Returns the descriptor of the named prepared statement on the session, or None if the prepared statement does not exist.

source

fn resolve_database( &self, database_name: &str ) -> Result<&dyn CatalogDatabase, CatalogError>

Resolves the named database.

If database_name exists in the catalog, it returns a reference to the resolved database; otherwise it returns an error.

source

fn get_database(&self, id: &DatabaseId) -> &dyn CatalogDatabase

Gets a database by its ID.

Panics if id does not specify a valid database.

source

fn get_databases(&self) -> Vec<&dyn CatalogDatabase>

Gets all databases.

source

fn resolve_schema( &self, database_name: Option<&str>, schema_name: &str ) -> Result<&dyn CatalogSchema, CatalogError>

Resolves a partially-specified schema name.

If the schema exists in the catalog, it returns a reference to the resolved schema; otherwise it returns an error.

source

fn resolve_schema_in_database( &self, database_spec: &ResolvedDatabaseSpecifier, schema_name: &str ) -> Result<&dyn CatalogSchema, CatalogError>

Resolves a schema name within a specified database.

If the schema exists in the database, it returns a reference to the resolved schema; otherwise it returns an error.

source

fn get_schema( &self, database_spec: &ResolvedDatabaseSpecifier, schema_spec: &SchemaSpecifier ) -> &dyn CatalogSchema

Gets a schema by its ID.

Panics if id does not specify a valid schema.

source

fn get_schemas(&self) -> Vec<&dyn CatalogSchema>

Gets all schemas.

source

fn get_mz_internal_schema_id(&self) -> &SchemaId

Gets the mz_internal schema id.

source

fn get_mz_unsafe_schema_id(&self) -> &SchemaId

Gets the mz_unsafe schema id.

source

fn is_system_schema(&self, schema: &str) -> bool

Returns true if schema is an internal system schema, false otherwise

source

fn is_system_schema_specifier(&self, schema: &SchemaSpecifier) -> bool

Returns true if schema is an internal system schema, false otherwise

source

fn resolve_role( &self, role_name: &str ) -> Result<&dyn CatalogRole, CatalogError>

Resolves the named role.

source

fn try_get_role(&self, id: &RoleId) -> Option<&dyn CatalogRole>

Gets a role by its ID.

source

fn get_role(&self, id: &RoleId) -> &dyn CatalogRole

Gets a role by its ID.

Panics if id does not specify a valid role.

source

fn get_roles(&self) -> Vec<&dyn CatalogRole>

Gets all roles.

source

fn mz_system_role_id(&self) -> RoleId

Gets the id of the mz_system role.

source

fn collect_role_membership(&self, id: &RoleId) -> BTreeSet<RoleId>

Collects all role IDs that id is transitively a member of.

source

fn resolve_cluster<'a, 'b>( &'a self, cluster_name: Option<&'b str> ) -> Result<&dyn CatalogCluster<'a>, CatalogError>

Resolves the named cluster.

If the provided name is None, resolves the currently active cluster.

source

fn resolve_cluster_replica<'a, 'b>( &'a self, cluster_replica_name: &'b QualifiedReplica ) -> Result<&dyn CatalogClusterReplica<'a>, CatalogError>

Resolves the named cluster replica.

source

fn resolve_item( &self, item_name: &PartialItemName ) -> Result<&dyn CatalogItem, CatalogError>

Resolves a partially-specified item name, that is NOT a function or type. (For resolving functions or types, please use SessionCatalog::resolve_function or SessionCatalog::resolve_type.)

If the partial name has a database component, it searches only the specified database; otherwise, it searches the active database. If the partial name has a schema component, it searches only the specified schema; otherwise, it searches a default set of schemas within the selected database. It returns an error if none of the searched schemas contain an item whose name matches the item component of the partial name.

Note that it is not an error if the named item appears in more than one of the search schemas. The catalog implementation must choose one.

source

fn resolve_function( &self, item_name: &PartialItemName ) -> Result<&dyn CatalogItem, CatalogError>

Performs the same operation as SessionCatalog::resolve_item but for functions within the catalog.

source

fn resolve_type( &self, item_name: &PartialItemName ) -> Result<&dyn CatalogItem, CatalogError>

Performs the same operation as SessionCatalog::resolve_item but for types within the catalog.

source

fn get_system_type(&self, name: &str) -> &dyn CatalogItem

Gets a type named name from exactly one of the system schemas.

§Panics
  • If name is not an entry in any system schema
  • If more than one system schema has an entry named name.
source

fn try_get_item(&self, id: &GlobalId) -> Option<&dyn CatalogItem>

Gets an item by its ID.

source

fn get_item(&self, id: &GlobalId) -> &dyn CatalogItem

Gets an item by its ID.

Panics if id does not specify a valid item.

source

fn get_items(&self) -> Vec<&dyn CatalogItem>

Gets all items.

source

fn get_item_by_name(&self, name: &QualifiedItemName) -> Option<&dyn CatalogItem>

Looks up an item by its name.

source

fn get_type_by_name(&self, name: &QualifiedItemName) -> Option<&dyn CatalogItem>

Looks up a type by its name.

source

fn get_cluster(&self, id: ClusterId) -> &dyn CatalogCluster<'_>

Gets a cluster by ID.

source

fn get_clusters(&self) -> Vec<&dyn CatalogCluster<'_>>

Gets all clusters.

source

fn get_cluster_replica( &self, cluster_id: ClusterId, replica_id: ReplicaId ) -> &dyn CatalogClusterReplica<'_>

Gets a cluster replica by ID.

source

fn get_cluster_replicas(&self) -> Vec<&dyn CatalogClusterReplica<'_>>

Gets all cluster replicas.

source

fn get_system_privileges(&self) -> &PrivilegeMap

Gets all system privileges.

source

fn get_default_privileges( &self ) -> Vec<(&DefaultPrivilegeObject, Vec<&DefaultPrivilegeAclItem>)>

Gets all default privileges.

source

fn find_available_name(&self, name: QualifiedItemName) -> QualifiedItemName

Finds a name like name that is not already in use.

If name itself is available, it is returned unchanged.

source

fn resolve_full_name(&self, name: &QualifiedItemName) -> FullItemName

Returns a fully qualified human readable name from fully qualified non-human readable name

source

fn resolve_full_schema_name(&self, name: &QualifiedSchemaName) -> FullSchemaName

Returns a fully qualified human readable schema name from fully qualified non-human readable schema name

source

fn config(&self) -> &CatalogConfig

Returns the configuration of the catalog.

source

fn now(&self) -> EpochMillis

Returns the number of milliseconds since the system epoch. For normal use this means the Unix epoch. This can safely be mocked in tests and start at 0.

Returns the set of supported AWS PrivateLink availability zone ids.

source

fn system_vars(&self) -> &SystemVars

Returns system vars

source

fn system_vars_mut(&mut self) -> &mut SystemVars

Returns mutable system vars

Clients should use this this method carefully, as changes to the backing state here are not guarateed to be persisted. The motivating use case for this method was ensuring that features are temporary turned on so catalog rehydration does not break due to unsupported SQL syntax.

source

fn get_owner_id(&self, id: &ObjectId) -> Option<RoleId>

Returns the RoleId of the owner of an object by its ID.

source

fn get_privileges(&self, id: &SystemObjectId) -> Option<&PrivilegeMap>

Returns the PrivilegeMap of the object.

source

fn object_dependents(&self, ids: &Vec<ObjectId>) -> Vec<ObjectId>

Returns all the IDs of all objects that depend on ids, including ids themselves.

The order is guaranteed to be in reverse dependency order, i.e. the leafs will appear earlier in the list than the roots. This is particularly userful for the order to drop objects.

source

fn item_dependents(&self, id: GlobalId) -> Vec<ObjectId>

Returns all the IDs of all objects that depend on id, including id themselves.

The order is guaranteed to be in reverse dependency order, i.e. the leafs will appear earlier in the list than id. This is particularly userful for the order to drop objects.

source

fn all_object_privileges(&self, object_type: SystemObjectType) -> AclMode

Returns all possible privileges associated with an object type.

source

fn get_object_type(&self, object_id: &ObjectId) -> ObjectType

Returns the object type of object_id.

source

fn get_system_object_type(&self, id: &SystemObjectId) -> SystemObjectType

Returns the system object type of id.

source

fn minimal_qualification( &self, qualified_name: &QualifiedItemName ) -> PartialItemName

Returns the minimal qualification required to unambiguously specify qualified_name.

source

fn add_notice(&self, notice: PlanNotice)

Adds a PlanNotice that will be displayed to the user if the plan successfully executes.

source

fn get_item_comments( &self, id: &GlobalId ) -> Option<&BTreeMap<Option<usize>, String>>

Returns the associated comments for the given id

Provided Methods§

source

fn active_database_name(&self) -> Option<&str>

Returns the database to use if one is not explicitly specified.

source

fn resolve_item_or_type( &self, name: &PartialItemName ) -> Result<&dyn CatalogItem, CatalogError>

Resolves name to a type or item, preferring the type if both exist.

Implementors§