-
Notifications
You must be signed in to change notification settings - Fork 628
Consolidate MapAccess
, and Subscript
into CompoundExpr
to handle the complex field access chain
#1551
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consolidate MapAccess
, and Subscript
into CompoundExpr
to handle the complex field access chain
#1551
Changes from 15 commits
192cab4
6be3c35
0e916dd
767b531
22f4e67
dee8b40
fc1cd59
8590896
4ad37d8
31a1e74
0355290
1de9b21
2a32b9f
495d1b3
e7b55be
6652905
47a5da1
b58e50c
7cb2e00
397335a
ac25e5d
a08e5c2
09b39eb
8968fcc
1328274
d6743e9
7d030c1
90e03eb
5c54d1b
57830e2
4b3818c
67cd877
23aea03
94847d7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -234,6 +234,10 @@ impl Dialect for SnowflakeDialect { | |||||||
RESERVED_FOR_IDENTIFIER.contains(&kw) | ||||||||
} | ||||||||
} | ||||||||
|
||||||||
fn supports_partiql(&self) -> bool { | ||||||||
true | ||||||||
} | ||||||||
Comment on lines
+238
to
+240
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah I don't think this is necessarily correct since partiql is a redshift feature, was this required somewhere? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I tried to integrate the conditions at datafusion-sqlparser-rs/src/parser/mod.rs Lines 2998 to 3000 in d0fcc06
Then, we can only check
Indeed, the name is a little weird for |
||||||||
} | ||||||||
|
||||||||
/// Parse snowflake create table statement. | ||||||||
|
Uh oh!
There was an error while loading. Please reload this page.