Member Junction
    Preparing search index...
    interface MigrationConversionResult {
        droppedCodeGenLines: number;
        droppedObjects: string[];
        fileName: string;
        handProcedural: string[];
        notes: string[];
        pgSQL: string;
        split: MigrationSplitResult;
        status: ConversionStatus;
        unhandled: UnhandledStatement[];
    }
    Index

    Properties

    droppedCodeGenLines: number

    Lines of Category-A CodeGen output dropped (regenerated natively instead).

    droppedObjects: string[]

    Names of objects dropped as codegen-regenerated (audit trail).

    fileName: string
    handProcedural: string[]

    Hand-written routines needing a human PG version — also embedded as gap comments.

    notes: string[]

    Human-readable notes describing what happened to each category.

    pgSQL: string

    The .pg.sql body to write. For reseed-or-regen-only this is a marker comment.

    The underlying split (boundary, regions, routing) for transparency/reporting.

    unhandled: UnhandledStatement[]

    Per-statement T-SQL the AST dialect refused to emit — also embedded as gap comments in pgSQL.