Type alias SingleExplainResult

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

Result of explaining a query with a single plan.

Type declaration

  • cacheable: boolean

    Whether it would be possible to cache the query.

  • plan: ExplainPlan

    Query plan.

  • stats: ExplainStats

    Optimizer statistics for the explained query.

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

    Warnings encountered while planning the query execution.

Generated using TypeDoc