From 19716c3d9081058c5da9dc5d7d2c7ee97b315aff Mon Sep 17 00:00:00 2001 From: yixie Date: Mon, 6 Jun 2022 22:50:40 -0700 Subject: [PATCH] fix changelog wording --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 493e61d1e2d..814d4f61f81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ - Updated `Session.table_function()` and `DataFrame.join_table_function()` to accept `TableFunctionCall` instances. ### Breaking Changes: -- Wnen creating a function with `functions.udf()` and `functions.sproc()`, you can now specify an empty list for the `imports` or `packages` argument to indicate that no import or package is used for this UDF or stored procedure. Previously, specifying an empty list meant that the function would use session-level imports or packages. +- When creating a function with `functions.udf()` and `functions.sproc()`, you can now specify an empty list for the `imports` or `packages` argument to indicate that no import or package is used for this UDF or stored procedure. Previously, specifying an empty list meant that the function would use session-level imports or packages. - Improved the `__repr__` implementation of data types in `types.py`. The unused `type_name` property has been removed. - Added a Snowpark-specific exception class for SQL errors. This replaces the previous `ProgrammingError` from the Python connector.