drupflare/worker - v1.0.0
    Preparing search index...

    Type Alias ChargeSplit

    one table's charged rows divided into what was stored and what was overhead

    type ChargeSplit = {
        chargedRows: number;
        chargePerRow: number;
        dataRows: number;
        exact: boolean;
        indexRows: number;
        table: string;
    }
    Index
    chargedRows: number
    chargePerRow: number

    charged rows one stored row costs, from the schema

    dataRows: number
    exact: boolean

    false when the charged total is not a whole multiple of the factor, or the factor is unknown

    indexRows: number

    every charged row that is not the table row.

    Index entries, except on an AUTOINCREMENT table where one is the sqlite_sequence rewrite.

    table: string