Polyglot SQL API Documentation - v0.2.0
    Preparing search index...

    Interface PlanStep

    A single step in the execution plan

    interface PlanStep {
        aggregations: Expression[];
        condition: Expression | null;
        dependencies: PlanStep[];
        group_by: Expression[];
        kind: StepKind;
        limit: Expression | null;
        name: string;
        order_by: Expression[];
        projections: Expression[];
    }
    Index

    Properties

    aggregations: Expression[]
    condition: Expression | null
    dependencies: PlanStep[]
    group_by: Expression[]
    kind: StepKind
    limit: Expression | null
    name: string
    order_by: Expression[]
    projections: Expression[]