- v1.7.3(January 15, 2025)
- Fix support for SqlAlchemy ARRAY.
- Fix return value of snowflake get_table_names.
- Fix incorrect quoting of identifiers with
_
as initial character. - Fix ARRAY type not supported in HYBRID tables.
- Add
force_div_is_floordiv
flag to overridediv_is_floordiv
new default valueFalse
inSnowflakeDialect
.- With the flag in
False
, the/
division operator will be treated as a float division and//
as a floor division. - This flag is added to maintain backward compatibility with the previous behavior of Snowflake Dialect division.
- This flag will be removed in the future and Snowflake Dialect will use
div_is_floor_div
asFalse
.
- With the flag in