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

    Interface DumpChunk

    interface DumpChunk {
        chars: number;
        cursor: DumpCursor;
        done: boolean;
        maxStatementChars: number;
        offsetPaged: string[];
        replayable: boolean;
        splitValues: number;
        sql: string;
        statements: number;
        structureOnly: string[];
        tables: Record<string, number>;
    }
    Index
    chars: number
    cursor: DumpCursor

    where to resume; pass it back verbatim

    done: boolean

    true when this chunk completes the dump

    maxStatementChars: number
    offsetPaged: string[]

    tables paged by OFFSET because they have no rowid; see pagedRowReader

    replayable: boolean
    splitValues: number
    sql: string
    statements: number
    structureOnly: string[]
    tables: Record<string, number>

    rows emitted in THIS chunk, per table