@pondpilot/flowscope-core
    Preparing search index...

    Interface SchemaMetadata

    Schema metadata for accurate column and table resolution.

    When provided, allows the analyzer to resolve ambiguous references and produce more accurate lineage information.

    interface SchemaMetadata {
        caseSensitivity?: CaseSensitivity;
        defaultCatalog?: string;
        defaultSchema?: string;
        searchPath?: SchemaNamespaceHint[];
        tables?: SchemaTable[];
    }
    Index

    Properties

    caseSensitivity?: CaseSensitivity

    Override for identifier normalization (default 'dialect')

    defaultCatalog?: string

    Default catalog applied to unqualified identifiers

    defaultSchema?: string

    Default schema applied to unqualified identifiers

    searchPath?: SchemaNamespaceHint[]

    Ordered list mirroring database search_path behavior

    tables?: SchemaTable[]

    Canonical table representations