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 4862d9c commit 0c159ceCopy full SHA for 0c159ce
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 = self.rbs.__anext__()
+ next_batch = await self.rbs.__anext__()
67
return RecordBatch(next_batch)
68
69
def __next__(self) -> RecordBatch:
0 commit comments