From c68a361285b526f13b9d24449824ddf76dff27b0 Mon Sep 17 00:00:00 2001 From: Adam Ling Date: Thu, 17 Oct 2024 13:58:46 -0700 Subject: [PATCH] add changelog --- CHANGELOG.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b98bc5d408..90406da9e02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,16 +4,21 @@ ### Snowpark Python API Updates +#### New Features + - Added support for 'Service' domain to `session.lineage.trace` API. - Added support for `copy_grants` parameter when registering UDxF and stored procedures. -#### New Features - #### Improvements + - Disables sql simplification when sort is performed after limit. - Previously, `df.sort().limit()` and `df.limit().sort()` generates the same query with sort in front of limit. Now, `df.limit().sort()` will generate query that reads `df.limit().sort()`. - Improve performance of generated query for `df.limit().sort()`, because limit stops table scanning as soon as the number of records is satisfied. +#### Bug Fixes + +- Fixed a bug where the automatic cleanup of temporary tables could interfere with the results of async query execution. + ### Snowpark pandas API Updates #### New Features