Interface QueryPlanRepresentationInputsV1Experimental

The metadata-only decision inputs recorded beside a representation choice so the selection is reproducible by inspection. Missing estimates are absent, never zero.

interface QueryPlanRepresentationInputsV1 {
    byteThreshold: number;
    estimatedBytes?: number;
    estimatedRows?: number;
    geometryEncoding?: GeometryEncoding;
    rowThreshold: number;
}

Properties

byteThreshold: number

Estimated bytes at or above which auto selects columnar.

estimatedBytes?: number
estimatedRows?: number
geometryEncoding?: GeometryEncoding

Declared physical geometry encoding, when the source identity carries one.

rowThreshold: number

Estimated rows at or above which auto selects columnar.