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
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,19 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
8
8
9
9
# Release Notes
10
10
11
-
- v3.3.0(Unreleased)
12
-
- Updated to use apache arrow-nanoarrow project for result arrow data conversion.
11
+
- v3.3.0(October 10,2023)
12
+
13
+
- Updated to Apache arrow-nanoarrow project for result arrow data conversion.
14
+
- Introduced the `NANOARROW_USAGE` environment variable to allows switching between the nanoarrow converter and the arrow converter. Valid values include:
15
+
-`FOLLOW_SESSION_PARAMETER`, which uses the converter configured in the server.
16
+
-`DISABLE_NANOARROW`, which uses arrow converter, overriding the server setting.
17
+
-`ENABLE_NANOARROW`, which uses the nanoarrow converter, overriding the server setting.
18
+
- Introduced the `snowflake.connector.cursor.NanoarrowUsage` enum, whose members include:
19
+
-`NanoarrowUsage.FOLLOW_SESSION_PARAMETER`, which uses the converter configured in the server.
20
+
-`NanoarrowUsage.DISABLE_NANOARROW`, which uses arrow converter, overriding the server setting.
21
+
-`NanoarrowUsage.ENABLE_NANOARROW`, which uses the nanoarrow converter, overriding the server setting.
22
+
- Introduced the `snowflake.connector.cursor.NANOARROW_USAGE` module variable to allow switching between the nanoarrow converter and the arrow converter. It works in conjunction with the `snowflake.connector.cursor.NanoarrowUsage` enum.
23
+
- The newly-introduced environment variable, enum, and module variable are temporary. They will be removed in a future release when switch from arrow to nanoarrow for data conversion is complete.
0 commit comments