pub trait SchemaProbe {
    fn get_current_schema() -> SimpleExpr;
    fn query_tables() -> SelectStatement;

    fn has_table<T>(table: T) -> SelectStatement
    where
        T: AsRef<str>
, { ... } fn has_column<T, C>(table: T, column: C) -> SelectStatement
    where
        T: AsRef<str>,
        C: AsRef<str>
, { ... } }

Required Methods

Provided Methods

Implementors