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: CHANGELOG.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,27 @@
1
1
# Release History
2
2
3
+
## 1.38.0 (YYYY-MM-DD)
4
+
5
+
### Snowpark Python API Updates
6
+
7
+
#### New Features
8
+
9
+
#### Bug Fixes
10
+
11
+
#### Deprecations
12
+
13
+
#### Dependency Updates
14
+
15
+
### Snowpark pandas API Updates
16
+
17
+
#### New Features
18
+
19
+
#### Improvements
20
+
- Set the default transfer limit in hybrid execution for data leaving Snowflake to 100k, which can be overridden with the SnowflakePandasTransferThreshold environment variable. This configuration is appropriate for scenarios with two available engines, "Pandas" and "Snowflake" on relational workloads.
# Filter 2 will immediately move to pandas because we know the size of the
195
+
# resultset. The SQL here is functionatly the same as above.
187
196
df_transactions_filter2=pd.read_snowflake(
188
-
"SELECT * FROM revenue_transactions WHERE Date >= DATEADD( 'days', -7, '2025-06-09' ) and Date < '2025-06-09'"
197
+
"SELECT Date, SUM(Revenue) AS REVENUE FROM revenue_transactions WHERE Date >= DATEADD( 'days', -7, '2025-06-09' ) and Date < '2025-06-09' GROUP BY DATE"
0 commit comments