This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch gh-readonly-queue/main/pr-2287-6f8e7b85c2570bff270989a2dfb93f7c4921e854 in repository https://gitbox.apache.org/repos/asf/datafusion-sqlparser-rs.git
commit 913cf0e79b31d494eef15b44068f88d786e6fe8d Author: Minjun Kim <[email protected]> AuthorDate: Thu Apr 2 13:11:54 2026 +0900 Enable `!` as NOT operator for Databricks dialect (#2287) --- src/dialect/databricks.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/dialect/databricks.rs b/src/dialect/databricks.rs index 55e4f56c..876eef22 100644 --- a/src/dialect/databricks.rs +++ b/src/dialect/databricks.rs @@ -90,4 +90,9 @@ impl Dialect for DatabricksDialect { fn supports_optimize_table(&self) -> bool { true } + + /// See <https://docs.databricks.com/aws/en/sql/language-manual/functions/bangsign> + fn supports_bang_not_operator(&self) -> bool { + true + } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
