Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#### Bug Fixes

- Fixed a bug that `DataFrame.limit()` fail if there is parameter binding in the executed SQL.
- Fixed a bug that `DataFrame.limit()` fail if there is parameter binding in the executed SQL when used in non-stored-procedure/udxf environment.
- Added an experimental fix for a bug in schema query generation that could cause invalid sql to be genrated when using nested structured types.

#### New Features
Expand Down
4 changes: 4 additions & 0 deletions tests/integ/test_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -4694,6 +4694,10 @@ def test_limit_offset(session):
"config.getoption('local_testing_mode', default=False)",
reason="Not supported in local testing ",
)
@pytest.mark.skipif(
IS_IN_STORED_PROC,
reason="SNOW-2356885: this is not fixed on sp/udxf",
)
def test_limit_param_binding(session):
table_name = Utils.random_name_for_temp_object(TempObjectType.TABLE)
session.create_dataframe(
Expand Down