mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-10-15 16:29:02 +00:00
Support Snowflake MATCH_RECOGNIZE
syntax (#1222)
This commit is contained in:
parent
bf89b7d808
commit
39980e8976
9 changed files with 847 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue