prorm API Reference
    Preparing search index...

    Interface ExplainPlan

    Generic explain plan entry (dialect-specific parsing may be needed)

    interface ExplainPlan {
        sql: string;
        plan: any;
        rawResults: QueryResult;
        duration: number;
        dialect: string;
        parsedPlan?: ParsedExplainStep[];
    }
    Index
    sql: string

    The analyzed SQL query

    plan: any

    Explain output (format depends on dialect)

    rawResults: QueryResult

    Raw query results from EXPLAIN

    duration: number

    Duration of the explain query in ms

    dialect: string

    Dialect used

    parsedPlan?: ParsedExplainStep[]

    Parsed plan (if parsable)