()
| 599 | schema = pa.schema([('ints', pa.list_(pa.int32()))]) |
| 600 | |
| 601 | def iter_batches(): |
| 602 | yield pa.record_batch([[[1], [2, 42]]], schema) |
| 603 | raise ValueError("test error") |
| 604 | |
| 605 | reader = pa.RecordBatchReader.from_batches(schema, iter_batches()) |
| 606 |
no test coverage detected