Type Alias deltalake::datafusion::common::OwnedSchemaReference

source ·
pub type OwnedSchemaReference = SchemaReference<'static>;

Aliased Type§

enum OwnedSchemaReference {
    Bare {
        schema: Cow<'static, str>,
    },
    Full {
        schema: Cow<'static, str>,
        catalog: Cow<'static, str>,
    },
}

Variants§

§

Bare

Fields

§schema: Cow<'static, str>
§

Full

Fields

§schema: Cow<'static, str>
§catalog: Cow<'static, str>