We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
non_exhaustive
SimpleExpr
1 parent a6092ba commit a59a7d2Copy full SHA for a59a7d2
src/expr.rs
@@ -20,6 +20,7 @@ pub struct Expr {
20
/// [`SimpleExpr`] is a node in the expression tree and can represent identifiers, function calls,
21
/// various operators and sub-queries.
22
#[derive(Debug, Clone, PartialEq)]
23
+#[non_exhaustive]
24
pub enum SimpleExpr {
25
Column(ColumnRef),
26
Tuple(Vec<SimpleExpr>),
0 commit comments