Member Junction
    Preparing search index...

    Result of a phased per-entity SQL execution. Reports which phase (if any) failed so the caller can aggregate a per-entity diagnostic without bisecting.

    interface PhasedExecutionResult {
        error?: Error;
        phase: "tvf" | "view" | "functions" | "permissions" | null;
        success: boolean;
    }
    Index

    Properties

    Properties

    error?: Error

    Underlying error when success is false.

    phase: "tvf" | "view" | "functions" | "permissions" | null

    Which phase failed. Null when success is true.

    success: boolean

    True only when every requested phase succeeded.