Member Junction
    Preparing search index...

    The data-informed PK verdict (statistics-first).

    interface PkStatVerdict {
        AmbiguousForLLM: boolean;
        Field: string;
        Reason: string;
        UniqueCandidates: string[];
    }
    Index

    Properties

    AmbiguousForLLM: boolean

    True when there were ≥2 unique candidates and naming couldn't break the tie → defer to the LLM tiebreaker.

    Field: string

    The chosen PK column, or null when no column clears the bar.

    Reason: string
    UniqueCandidates: string[]

    All columns that are provably unique + non-null over enough rows (the candidate set).