Trait sql::catalog::CatalogDatabase[][src]

pub trait CatalogDatabase {
    fn name(&self) -> &str;
fn id(&self) -> i64;
fn has_schemas(&self) -> bool; }
Expand description

A database in a SessionCatalog.

Required methods

Returns a fully-specified name of the database.

Returns a stable ID for the database.

Returns whether the database contains schemas.

Implementors