Member Junction
    Preparing search index...

    §B — input for decideSchemaLimitViolations: the selected table/column counts + the operator caps.

    interface SchemaLimitInput {
        ColumnCountByTable: { ColumnCount: number; Name: string }[];
        MaxColumnsPerTable: number;
        MaxTables: number;
        TableCount: number;
    }
    Index

    Properties

    ColumnCountByTable: { ColumnCount: number; Name: string }[]

    Per selected table: its name + the column count it would materialize.

    MaxColumnsPerTable: number

    Operator cap on columns per table (from MJ_INTEGRATION_MAX_COLUMNS_PER_TABLE). null = unbounded.

    MaxTables: number

    Operator cap on table count (from MJ_INTEGRATION_MAX_TABLES). null = unbounded.

    TableCount: number

    Number of tables the user selected to materialize.