mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-31 03:07:20 +00:00
Add support for first, last aggregate function parsing (#882)
* Add order by parsing to functions * Fix doc error * minor changes
This commit is contained in:
parent
33b12acce7
commit
1b86abebe2
12 changed files with 96 additions and 7 deletions
|
@ -791,6 +791,7 @@ fn parse_insert_with_on_duplicate_update() {
|
|||
over: None,
|
||||
distinct: false,
|
||||
special: false,
|
||||
order_by: vec![],
|
||||
})
|
||||
},
|
||||
Assignment {
|
||||
|
@ -803,6 +804,7 @@ fn parse_insert_with_on_duplicate_update() {
|
|||
over: None,
|
||||
distinct: false,
|
||||
special: false,
|
||||
order_by: vec![],
|
||||
})
|
||||
},
|
||||
Assignment {
|
||||
|
@ -815,6 +817,7 @@ fn parse_insert_with_on_duplicate_update() {
|
|||
over: None,
|
||||
distinct: false,
|
||||
special: false,
|
||||
order_by: vec![],
|
||||
})
|
||||
},
|
||||
Assignment {
|
||||
|
@ -827,6 +830,7 @@ fn parse_insert_with_on_duplicate_update() {
|
|||
over: None,
|
||||
distinct: false,
|
||||
special: false,
|
||||
order_by: vec![],
|
||||
})
|
||||
},
|
||||
Assignment {
|
||||
|
@ -839,6 +843,7 @@ fn parse_insert_with_on_duplicate_update() {
|
|||
over: None,
|
||||
distinct: false,
|
||||
special: false,
|
||||
order_by: vec![],
|
||||
})
|
||||
},
|
||||
])),
|
||||
|
@ -1182,6 +1187,7 @@ fn parse_table_colum_option_on_update() {
|
|||
over: None,
|
||||
distinct: false,
|
||||
special: false,
|
||||
order_by: vec![],
|
||||
})),
|
||||
},],
|
||||
}],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue