Type alias MultiExplainResult

MultiExplainResult: {
    cacheable: boolean;
    plans: ExplainPlan[];
    stats: ExplainStats;
    warnings: {
        code: number;
        message: string;
    }[];
}

Result of explaining a query with multiple plans.

Type declaration

  • cacheable: boolean

    Whether it would be possible to cache the query.

  • plans: ExplainPlan[]

    Query plans.

  • stats: ExplainStats

    Optimizer statistics for the explained query.

  • warnings: {
        code: number;
        message: string;
    }[]

    Warnings encountered while planning the query execution.

Generated using TypeDoc