mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-12-23 11:12:51 +00:00
Databricks: support SELECT * EXCEPT (#1261)
This commit is contained in:
parent
49d178477e
commit
5ed13b5af3
8 changed files with 63 additions and 34 deletions
|
|
@ -9704,8 +9704,7 @@ impl<'a> Parser<'a> {
|
|||
} else {
|
||||
None
|
||||
};
|
||||
let opt_except = if dialect_of!(self is GenericDialect | BigQueryDialect | ClickHouseDialect)
|
||||
{
|
||||
let opt_except = if self.dialect.supports_select_wildcard_except() {
|
||||
self.parse_optional_select_item_except()?
|
||||
} else {
|
||||
None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue