Support Snowflake MATCH_RECOGNIZE syntax (#1222)

This commit is contained in:
Joey Hain 2024-04-22 13:17:50 -07:00 committed by GitHub
parent bf89b7d808
commit 39980e8976
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 847 additions and 9 deletions

View file

@ -152,6 +152,10 @@ pub trait Dialect: Debug + Any {
fn supports_group_by_expr(&self) -> bool {
false
}
/// Returns true if the dialect supports the MATCH_RECOGNIZE operation.
fn supports_match_recognize(&self) -> bool {
false
}
/// Returns true if the dialect supports `(NOT) IN ()` expressions
fn supports_in_empty_list(&self) -> bool {
false