Member Junction
    Preparing search index...
    interface ConversionResult {
        auditReport?: AuditReport;
        durationMs: number;
        failureCount: number;
        llmCount: number;
        outputFile?: string;
        outputSQL: string;
        passthroughCount: number;
        sqlglotCount: number;
        statements: StatementResult[];
        success: boolean;
        successCount: number;
        totalStatements: number;
    }
    Index

    Properties

    auditReport?: AuditReport

    Audit report (if enabled)

    durationMs: number

    Duration in milliseconds

    failureCount: number

    Statements that failed

    llmCount: number

    Statements converted by LLM fallback

    outputFile?: string

    Output file path (if written)

    outputSQL: string

    Combined converted SQL

    passthroughCount: number

    Statements passed through unchanged

    sqlglotCount: number

    Statements converted by sqlglot

    statements: StatementResult[]

    Per-statement results

    success: boolean

    Overall success

    successCount: number

    Statements successfully converted

    totalStatements: number

    Total statements processed