Member Junction
    Preparing search index...

    Column specification for generating a materialized result's physical table. The caller (base-view or query materialization path) resolves these from the source shape; the provider only assembles the engine-specific DDL.

    interface MaterializedColumnSpec {
        IsPrimaryKey: boolean;
        Name: string;
        Nullable: boolean;
        SQLType: string;
    }
    Index

    Properties

    IsPrimaryKey: boolean

    Whether this column is (part of) the single-column surrogate / primary key.

    Name: string

    Column name, as it appears in the source result shape.

    Nullable: boolean

    Whether the column allows NULL.

    SQLType: string

    Engine-native SQL type string, e.g. nvarchar(255), int, decimal(10,2).