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 6ee8440 commit 9fe8541Copy full SHA for 9fe8541
src/snowflake/snowpark/modin/plugin/compiler/snowflake_query_compiler.py
@@ -1511,15 +1511,7 @@ def to_pandas(
1511
The QueryCompiler converted to pandas.
1512
1513
"""
1514
- if self._relaxed_query_compiler is None:
1515
- frame = self._modin_frame
1516
- else:
1517
- frame = (
1518
- self._relaxed_query_compiler._modin_frame.ensure_row_position_column(
1519
- dummy_row_pos_mode=False
1520
- )
1521
1522
- result = frame.to_pandas(statement_params, **kwargs)
+ result = self._modin_frame.to_pandas(statement_params, **kwargs)
1523
if self._attrs:
1524
result.attrs = self._attrs
1525
return result
0 commit comments