Skip to content

Commit b8691f1

Browse files
committed
fix test and update description.md
1 parent 836bb01 commit b8691f1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

DESCRIPTION.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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)

test/unit/test_converter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,5 +131,5 @@ def test_day_time_interval_decimal_to_timedelta(nanos):
131131
def 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")

0 commit comments

Comments
 (0)