public final class SQLQueryTranslation:
Immutable result of lowering canonical QIR to the structured SQL AST.
translation = translator.translate(plan) command = translation.statement.render(dialect)
| Modifier and Type | Member | Description |
|---|---|---|
| public readonly property | projectionprojection as QirExpression |
Canonical projection retained for typed row materialization. |
| public readonly property | statementstatement as SQLSelectStatement |
Structured SQL statement ready for dialect rendering. |
| Modifier and Type | Member | Description |
|---|---|---|
| public | SQLQueryTranslationSQLQueryTranslation(statement as SQLSelectStatement, projection as QirExpression): |
Creates one complete provider translation. |