Member Junction
    Preparing search index...

    Result of transpiling kept T-SQL to PostgreSQL.

    interface MJTranspileResult {
        dropped?: UnhandledStatement[];
        sql: string[];
        unhandled: UnhandledStatement[];
    }
    Index

    Properties

    dropped?: UnhandledStatement[]

    Statements the dialect INTENTIONALLY discarded (batch-control noise, an actionless ALTER, a swallowed routine END, …) — accounted, not vanished (issue #3252 1d). Optional so a test stub can omit it; when absent it is treated as empty.

    sql: string[]

    The emitted PostgreSQL statements, in order.

    unhandled: UnhandledStatement[]

    Per-statement T-SQL the transpiler refused to emit — the gap report.