mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-25 00:14:06 +00:00
[ClickHouse] Add support for WITH FILL to OrderByExpr (#1330)
Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
This commit is contained in:
parent
20f7ac59e3
commit
845a1aaddd
9 changed files with 397 additions and 47 deletions
|
@ -1159,7 +1159,7 @@ fn parse_copy_to() {
|
|||
value_table_mode: None,
|
||||
connect_by: None,
|
||||
}))),
|
||||
order_by: vec![],
|
||||
order_by: None,
|
||||
limit: None,
|
||||
limit_by: vec![],
|
||||
offset: None,
|
||||
|
@ -2491,7 +2491,7 @@ fn parse_array_subquery_expr() {
|
|||
connect_by: None,
|
||||
}))),
|
||||
}),
|
||||
order_by: vec![],
|
||||
order_by: None,
|
||||
limit: None,
|
||||
limit_by: vec![],
|
||||
offset: None,
|
||||
|
@ -4162,7 +4162,7 @@ fn test_simple_postgres_insert_with_alias() {
|
|||
Expr::Value(Value::Number("123".to_string(), false))
|
||||
]]
|
||||
})),
|
||||
order_by: vec![],
|
||||
order_by: None,
|
||||
limit: None,
|
||||
limit_by: vec![],
|
||||
offset: None,
|
||||
|
@ -4231,7 +4231,7 @@ fn test_simple_postgres_insert_with_alias() {
|
|||
))
|
||||
]]
|
||||
})),
|
||||
order_by: vec![],
|
||||
order_by: None,
|
||||
limit: None,
|
||||
limit_by: vec![],
|
||||
offset: None,
|
||||
|
@ -4296,7 +4296,7 @@ fn test_simple_insert_with_quoted_alias() {
|
|||
Expr::Value(Value::SingleQuotedString("0123".to_string()))
|
||||
]]
|
||||
})),
|
||||
order_by: vec![],
|
||||
order_by: None,
|
||||
limit: None,
|
||||
limit_by: vec![],
|
||||
offset: None,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue