mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-24 16:04:04 +00:00
Support PREWHERE
condition for ClickHouse dialect (#1328)
This commit is contained in:
parent
700bd03d6f
commit
0884dd920d
9 changed files with 94 additions and 0 deletions
|
@ -111,6 +111,7 @@ fn parse_create_procedure() {
|
|||
into: None,
|
||||
from: vec![],
|
||||
lateral_views: vec![],
|
||||
prewhere: None,
|
||||
selection: None,
|
||||
group_by: GroupByExpr::Expressions(vec![], vec![]),
|
||||
cluster_by: vec![],
|
||||
|
@ -528,6 +529,7 @@ fn parse_substring_in_select() {
|
|||
joins: vec![]
|
||||
}],
|
||||
lateral_views: vec![],
|
||||
prewhere: None,
|
||||
selection: None,
|
||||
group_by: GroupByExpr::Expressions(vec![], vec![]),
|
||||
cluster_by: vec![],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue