drupflare/drangler - v0.1.0
    Preparing search index...

    Interface ConvertResult

    interface ConvertResult {
        indexes: number;
        lossy: string[];
        maxStatementChars: number;
        overLimit: { rows: number; table: string; widest: number }[];
        rows: number;
        skipped: SkippedStatement[];
        sql: string;
        statements: number;
        tables: string[];
    }
    Index
    indexes: number
    lossy: string[]

    conversions that succeeded but do not round-trip; each says what changed

    maxStatementChars: number

    the widest statement emitted, so a caller can see how close the dump came to the ceiling

    overLimit: { rows: number; table: string; widest: number }[]

    rows refused for width, by table, with the widest one measured

    rows: number
    skipped: SkippedStatement[]
    sql: string
    statements: number
    tables: string[]