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 @@ -12,6 +12,7 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
1212 - This allows headless environments (like Docker or Airflow) running locally to auth via a browser URL.
1313 - Fix compilation error when building from sources with libc++.
1414 - Pin lower versions of dependencies to oldest version without vulnerabilities.
15+ - Fix string representation of INTERVAL YEAR and INTERVAL MONTH types.
1516
1617- v4.0.0(October 09,2025)
1718 - 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