Trait sql::catalog::CatalogSchema[][src]

pub trait CatalogSchema {
    fn name(&self) -> &SchemaName;
fn id(&self) -> i64;
fn has_items(&self) -> bool; }
Expand description

A schema in a SessionCatalog.

Required methods

Returns a fully-specified name of the schema.

Returns a stable ID for the schema.

Lists the CatalogItems for the schema.

Implementors