@earth-app/collegedb
    Preparing search index...

    Interface QueryPlan

    What a statement was found to be, and which keys it routes to.

    1.4.0

    interface QueryPlan {
        keyColumn: string;
        keys: string[];
        kind: "insert" | "update" | "delete" | "select";
        readOnly: boolean;
        table: string;
    }
    Index
    keyColumn: string

    Key column that was matched

    keys: string[]

    Routing keys, in statement order. More than one means the statement fans out across shards: an IN (...) predicate or a multi-row VALUES.

    kind: "insert" | "update" | "delete" | "select"

    Statement kind that was recognized

    readOnly: boolean

    true when the statement reads and can be answered by a single shard per key

    table: string

    Table the statement targets