Should be
class DatabricksDialect(default.DefaultDialect):
"""This dialect implements only those methods required to pass our e2e tests"""
supports_native_boolean: bool = True
as otherwise bools are converted to ints which results in datatype errors
Reactions are currently unavailable
Should be
class DatabricksDialect(default.DefaultDialect): """This dialect implements only those methods required to pass our e2e tests""" supports_native_boolean: bool = Trueas otherwise bools are converted to ints which results in datatype errors