Skip to content

Commit 921bc70

Browse files
NO SNOW: modify SNOW-2303618 changelog and skip test on snowfort (#3801)
1 parent aeb6f04 commit 921bc70

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#### Bug Fixes
88

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

1212
#### New Features

tests/integ/test_dataframe.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4694,6 +4694,10 @@ def test_limit_offset(session):
46944694
"config.getoption('local_testing_mode', default=False)",
46954695
reason="Not supported in local testing ",
46964696
)
4697+
@pytest.mark.skipif(
4698+
IS_IN_STORED_PROC,
4699+
reason="SNOW-2356885: this is not fixed on sp/udxf",
4700+
)
46974701
def test_limit_param_binding(session):
46984702
table_name = Utils.random_name_for_temp_object(TempObjectType.TABLE)
46994703
session.create_dataframe(

0 commit comments

Comments
 (0)