Skip to content

Commit

Permalink
Fix boolean literals (#357)
Browse files Browse the repository at this point in the history
Set supports_native_boolean to True

Signed-off-by: Alex Holyoke <alexander.holyoke@growthloop.com>
  • Loading branch information
aholyoke authored Mar 14, 2024
1 parent f85e903 commit c103352
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/databricks/sqlalchemy/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ class DatabricksDialect(default.DefaultDialect):
supports_default_values: bool = False
supports_server_side_cursors: bool = False
supports_sequences: bool = False
supports_native_boolean: bool = True

colspecs = {
sqlalchemy.types.DateTime: dialect_type_impl.TIMESTAMP_NTZ,
Expand Down

0 comments on commit c103352

Please sign in to comment.