Interface QueryPlanRepresentationDecisionV1Experimental

Deterministic, explainable result-representation decision carried by every plan. available lists exactly what this source and query can serve, so a consumer can tell "columnar was not offered" from "columnar was declined".

interface QueryPlanRepresentationDecisionV1 {
    available: readonly QueryPlanRepresentation[];
    inputs: QueryPlanRepresentationInputsV1;
    reason: QueryPlanRepresentationReason;
    requested: QueryPlanRepresentationRequest;
    selected: QueryPlanRepresentation;
    version: "1.0";
}

Properties

available: readonly QueryPlanRepresentation[]

Representations this source and query can serve, in stable order.

version