Member Junction
    Preparing search index...

    The kept (T-SQL, NOT yet transpiled) content of a migration after classification — codegen objects and mj-sync metadata dropped, hand-procedural flagged. This is the single source of truth for what survives the split; convertMigration consumes it.

    interface KeptTSQL {
        droppedCodeGenLines: number;
        droppedObjects: string[];
        fileName: string;
        handProcedural: string[];
        notes: string[];
        split: MigrationSplitResult;
        status: ConversionStatus;
        tsql: string;
    }
    Index

    Properties

    droppedCodeGenLines: number

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

    droppedObjects: string[]

    Names of objects dropped for native regeneration (audit trail; statement mode).

    fileName: string
    handProcedural: string[]

    Hand-written routines that need a human PG version (names/evidence).

    notes: string[]

    Human-readable notes describing what was dropped/kept and why.

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

    tsql: string

    The kept SQL-Server SQL to transpile. '' when nothing to keep.