File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
1313 - Fix compilation error when building from sources with libc++.
1414 - Pin lower versions of dependencies to oldest version without vulnerabilities.
1515 - Added no_proxy parameter for proxy configuration without using environmental variables.
16+ - Fix string representation of INTERVAL YEAR and INTERVAL MONTH types.
1617
1718- v4.0.0(October 09,2025)
1819 - Added support for checking certificates revocation using revocation lists (CRLs)
Original file line number Diff line number Diff line change @@ -131,5 +131,5 @@ def test_day_time_interval_decimal_to_timedelta(nanos):
131131def test_year_month_interval_to_timedelta (months ):
132132 converter = ArrowConverterContext ()
133133 assert converter .INTERVAL_YEAR_MONTH_to_numpy_timedelta (
134- months
134+ months , scale = 0
135135 ) == numpy .timedelta64 (months , "M" )
You can’t perform that action at this time.
0 commit comments