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.
2 parents 3d35a80 + 6762fe1 commit 67f1ab0Copy full SHA for 67f1ab0
crates/parser/src/codegen.rs
@@ -93,6 +93,19 @@ mod tests {
93
)
94
}
95
96
+ #[test]
97
+ fn test_select_with_where() {
98
+ test_get_node_properties(
99
+ "select 1 from contact where id = 1;",
100
+ SyntaxKind::SelectStmt,
101
+ vec![
102
+ TokenProperty::from(SyntaxKind::Select),
103
+ TokenProperty::from(SyntaxKind::From),
104
+ TokenProperty::from(SyntaxKind::Where),
105
+ ],
106
+ )
107
+ }
108
+
109
#[test]
110
fn test_create_domain() {
111
test_get_node_properties(
0 commit comments