This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-sqlparser-rs.git
The following commit(s) were added to refs/heads/main by this push:
new 913cf0e7 Enable `!` as NOT operator for Databricks dialect (#2287)
913cf0e7 is described below
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]