Skip to content

Commit c103352

Browse files
authored
Fix boolean literals (#357)
Set supports_native_boolean to True Signed-off-by: Alex Holyoke <[email protected]>
1 parent f85e903 commit c103352

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/databricks/sqlalchemy/base.py

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ class DatabricksDialect(default.DefaultDialect):
6464
supports_default_values: bool = False
6565
supports_server_side_cursors: bool = False
6666
supports_sequences: bool = False
67+
supports_native_boolean: bool = True
6768

6869
colspecs = {
6970
sqlalchemy.types.DateTime: dialect_type_impl.TIMESTAMP_NTZ,

0 commit comments

Comments
 (0)