We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbb19e8 commit 7f0da25Copy full SHA for 7f0da25
1 file changed
src/ast/query.rs
@@ -156,12 +156,12 @@ pub enum SetExpr {
156
/// UNION/EXCEPT/INTERSECT of two queries
157
/// A set operation combining two query expressions.
158
SetOperation {
159
+ /// Left operand of the set operation.
160
+ left: Box<SetExpr>,
161
/// The set operator used (e.g. `UNION`, `EXCEPT`).
162
op: SetOperator,
163
/// Optional quantifier (`ALL`, `DISTINCT`, etc.).
164
set_quantifier: SetQuantifier,
- /// Left operand of the set operation.
- left: Box<SetExpr>,
165
/// Right operand of the set operation.
166
right: Box<SetExpr>,
167
},
0 commit comments