[databricks] update dialect to support grouping by with modifier (#2047)
Some checks failed
license / Release Audit Tool (RAT) (push) Has been cancelled
Rust / codestyle (push) Has been cancelled
Rust / lint (push) Has been cancelled
Rust / benchmark-lint (push) Has been cancelled
Rust / compile (push) Has been cancelled
Rust / docs (push) Has been cancelled
Rust / compile-no-std (push) Has been cancelled
Rust / test (beta) (push) Has been cancelled
Rust / test (nightly) (push) Has been cancelled
Rust / test (stable) (push) Has been cancelled

Co-authored-by: Ifeanyi Ubah <ify1992@yahoo.com>
This commit is contained in:
nick young 2025-10-03 23:35:09 -07:00 committed by GitHub
parent 7461d8bd02
commit ade4082656
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -69,4 +69,9 @@ impl Dialect for DatabricksDialect {
fn supports_nested_comments(&self) -> bool {
true
}
/// See <https://docs.databricks.com/en/sql/language-manual/sql-ref-syntax-qry-select-groupby.html>
fn supports_group_by_with_modifier(&self) -> bool {
true
}
}