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

    Interface PlanStep

    A single step in the execution plan

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

    Properties

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