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 df6c6bf commit 4862d9cCopy full SHA for 4862d9c
python/datafusion/record_batch.py
@@ -63,7 +63,7 @@ def next(self) -> RecordBatch | None:
63
64
async def __anext__(self) -> RecordBatch:
65
"""Async iterator function."""
66
- next_batch = anext(self.rbs)
+ next_batch = self.rbs.__anext__()
67
return RecordBatch(next_batch)
68
69
def __next__(self) -> RecordBatch:
0 commit comments