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

    Interface DumpOptions

    interface DumpOptions {
        includeRows?: (table: string) => boolean;
        limitPerTable?: number;
        maxCharsPerChunk?: number;
        maxLiteralChars?: number;
    }
    Index
    includeRows?: (table: string) => boolean

    Rows-only filter, defaulting to !isRegenerable. DDL is always emitted, so a trimmed dump still restores the whole schema. Pass () => true for a byte-exact copy.

    limitPerTable?: number

    rows per table, for a cheap sample; 0 or absent is every row

    maxCharsPerChunk?: number

    characters per chunk for dumpChunk; see DUMP_CHARS_PER_CHUNK

    maxLiteralChars?: number

    Largest literal a single statement may carry before the value is built across appends.

    Below the Durable Object's own 100,000-character ceiling by default, because the literal is not the whole statement -- the INSERT around it costs characters too.