sungwy commented on code in PR #2255:
URL: https://github.com/apache/iceberg-python/pull/2255#discussion_r2275004229
##########
pyiceberg/io/pyarrow.py:
##########
@@ -1679,7 +1749,7 @@ def batches_for_task(task: FileScanTask) ->
List[pa.RecordBatch]:
break
def _record_batches_from_scan_tasks_and_deletes(
- self, tasks: Iterable[FileScanTask], deletes_per_file: Dict[str,
List[ChunkedArray]]
+ self, tasks: Iterable[FileScanTask], deletes_per_file: Union[Dict[str,
pa.ChunkedArray], pa.Table]
Review Comment:
```suggestion
self, tasks: Iterable[FileScanTask], deletes_per_file: Dict[str,
List[Union[pa.ChunkedArray, pa.Table]]]
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]