Interface DataToMapStrategyExplanationExperimental

Strategy selection result from explainDataToMapStrategy.

interface DataToMapStrategyExplanation {
    probedCount?: number;
    reasons: readonly DataToMapDiagnostic[];
    strategy: DataToMapStrategy;
}

Properties

probedCount?: number

Matching row count observed by the size probe, when one ran.

reasons: readonly DataToMapDiagnostic[]