()
| 335 | ) |
| 336 | |
| 337 | def _wrapped_iterator(): |
| 338 | for batch in batch_iterable: |
| 339 | batch = BlockAccessor.for_block(BlockAccessor.batch_to_block(batch)) |
| 340 | for row in batch.iter_rows(public_row_format=True): |
| 341 | yield row |
| 342 | |
| 343 | return _IterableFromIterator(_wrapped_iterator) |
| 344 |
nothing calls this directly
no test coverage detected