()
| 102 | |
| 103 | |
| 104 | def make_extension_batch(): |
| 105 | schema = make_extension_schema() |
| 106 | ext_col = schema[0].type.wrap_array(pa.array([b"foo", b"bar"], |
| 107 | type=pa.binary(3))) |
| 108 | return pa.record_batch([ext_col], schema) |
| 109 | |
| 110 | |
| 111 | def make_batches(): |
nothing calls this directly
no test coverage detected