Skip to content

Commit 7f0da25

Browse files
committed
Align visit order with parsed SQL
1 parent fbb19e8 commit 7f0da25

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ast/query.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,12 +156,12 @@ pub enum SetExpr {
156156
/// UNION/EXCEPT/INTERSECT of two queries
157157
/// A set operation combining two query expressions.
158158
SetOperation {
159+
/// Left operand of the set operation.
160+
left: Box<SetExpr>,
159161
/// The set operator used (e.g. `UNION`, `EXCEPT`).
160162
op: SetOperator,
161163
/// Optional quantifier (`ALL`, `DISTINCT`, etc.).
162164
set_quantifier: SetQuantifier,
163-
/// Left operand of the set operation.
164-
left: Box<SetExpr>,
165165
/// Right operand of the set operation.
166166
right: Box<SetExpr>,
167167
},

0 commit comments

Comments
 (0)