Support for CONNECT BY (#1138)

This commit is contained in:
Joey Hain 2024-04-27 03:52:21 -07:00 committed by GitHub
parent deaa6d8151
commit 0b5722afbf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 319 additions and 4 deletions

View file

@ -179,6 +179,7 @@ fn test_select_union_by_name() {
named_window: vec![],
qualify: None,
value_table_mode: None,
connect_by: None,
}))),
right: Box::<SetExpr>::new(SetExpr::Select(Box::new(Select {
distinct: None,
@ -215,6 +216,7 @@ fn test_select_union_by_name() {
named_window: vec![],
qualify: None,
value_table_mode: None,
connect_by: None,
}))),
});
assert_eq!(ast.body, expected);