We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ffe411 commit 3cced95Copy full SHA for 3cced95
CHANGELOG.md
@@ -36,6 +36,7 @@
36
- `groupby.size`
37
- `concat`
38
- `copy`
39
+- Make faster pandas disabled by default (opt-in instead of opt-out).
40
41
## 1.41.0 (2025-10-23)
42
src/snowflake/snowpark/session.py
@@ -754,7 +754,7 @@ def __init__(
754
755
self._dummy_row_pos_optimization_enabled: bool = (
756
self._conn._get_client_side_session_parameter(
757
- _SNOWPARK_PANDAS_DUMMY_ROW_POS_OPTIMIZATION_ENABLED, True
+ _SNOWPARK_PANDAS_DUMMY_ROW_POS_OPTIMIZATION_ENABLED, False
758
)
759
760
0 commit comments