You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DESCRIPTION.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,8 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
13
13
- Improved error message for client-side query cancellations due to timeouts.
14
14
- Added support of GCS regional endpoints.
15
15
- Added `gcs_use_virtual_endpoints` connection property that forces the usage of the virtual GCS usage. See more: https://cloud.google.com/storage/docs/request-endpoints#xml-api
16
+
- Fixed a bug that caused driver to fail silently on `TO_DATE` arrow to python conversion when invalid date was followed by the correct one.
17
+
- Added `check_arrow_conversion_error_on_every_column` connection property that can be set to `False` to restore previous behaviour in which driver will ignore errors until it occurs in the last column. This flag's purpose is to unblock workflows that may be impacted by the bugfix and will be removed in later releases.
16
18
17
19
- v3.14.0(March 03, 2025)
18
20
- Bumped pyOpenSSL dependency upper boundary from <25.0.0 to <26.0.0.
), # use https://{bucket}.storage.googleapis.com instead of https://storage.googleapis.com/{bucket}
320
+
"check_arrow_conversion_error_on_every_column": (
321
+
True,
322
+
bool,
323
+
), # SNOW-XXXXX: remove the check_arrow_conversion_error_on_every_column flag
320
324
}
321
325
322
326
APPLICATION_RE=re.compile(r"[\w\d_]+")
@@ -397,6 +401,7 @@ class SnowflakeConnection:
397
401
token_file_path: The file path of the token file. If both token and token_file_path are provided, the token in token_file_path will be used.
398
402
unsafe_file_write: When true, files downloaded by GET will be saved with 644 permissions. Otherwise, files will be saved with safe - owner-only permissions: 600.
399
403
gcs_use_virtual_endpoints: When true, the virtual endpoint url is used, see: https://cloud.google.com/storage/docs/request-endpoints#xml-api
404
+
check_arrow_conversion_error_on_every_column: When true, the error check after the conversion from arrow to python types will happen for every column in the row. This is a new behaviour which fixes the bug that caused the type errors to trigger silently when occurring at any place other than last column in a row. To revert the previous (faulty) behaviour, please set this flag to false.
0 commit comments