Skip to main content

Interface: SQLLangCtx

Defined in: lang-sql/src/visitors/builder.ts:77

Per-query SQL language context threaded through the plan builder.

Properties

ctes

ctes: Map<string, PlanTupleOperator>

Defined in: lang-sql/src/visitors/builder.ts:79

Non-materialized CTEs available in the current query scope, keyed by name.


materializedCtes

materializedCtes: Map<string, ASTIdentifier[]>

Defined in: lang-sql/src/visitors/builder.ts:81

Materialized CTEs registered in the current scope; maps CTE name to its output schema.