Skip to content

Commit d91ecfa

Browse files
committed
Remove redundant to_record_batch_stream method from DataFrame class
1 parent 16a249c commit d91ecfa

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

python/datafusion/dataframe.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1031,10 +1031,6 @@ def execute_stream(self) -> RecordBatchStream:
10311031
"""
10321032
return RecordBatchStream(self.df.execute_stream())
10331033

1034-
def to_record_batch_stream(self) -> RecordBatchStream:
1035-
"""Return a :class:`RecordBatchStream` executing this DataFrame."""
1036-
return self.execute_stream()
1037-
10381034
def execute_stream_partitioned(self) -> list[RecordBatchStream]:
10391035
"""Executes this DataFrame and returns a stream for each partition.
10401036

0 commit comments

Comments
 (0)