* Result-level UNION ALL. Downstream query clauses see the union result row * shape, not the branch source aliases. Optimizers may push safe operations * into branches, but compiler phases should treat this as a derived relation * unless they are explicitly handling branch lowering.
(public queries: Array<QueryIR>)
| 122 | * unless they are explicitly handling branch lowering. |
| 123 | */ |
| 124 | constructor(public queries: Array<QueryIR>) { |
| 125 | super() |
| 126 | } |
| 127 | |
| 128 | get alias(): string { |
| 129 | return `` |
nothing calls this directly
no outgoing calls
no test coverage detected