Skip to content

Commit 913cf0e

Browse files
authored
Enable ! as NOT operator for Databricks dialect (#2287)
1 parent 6f8e7b8 commit 913cf0e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/dialect/databricks.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,9 @@ impl Dialect for DatabricksDialect {
9090
fn supports_optimize_table(&self) -> bool {
9191
true
9292
}
93+
94+
/// See <https://docs.databricks.com/aws/en/sql/language-manual/functions/bangsign>
95+
fn supports_bang_not_operator(&self) -> bool {
96+
true
97+
}
9398
}

0 commit comments

Comments
 (0)