| 2125 | explicit ExportedArrayStream(StreamType* stream) : stream_(stream) {} |
| 2126 | |
| 2127 | Status GetSchema(struct ArrowSchema* out_schema) { |
| 2128 | return ExportStreamSchema(reader(), out_schema); |
| 2129 | } |
| 2130 | |
| 2131 | Status GetNext(ArrayType* out_array) { |
| 2132 | return ExportStreamNext(reader(), next_batch_num(), out_array); |
no test coverage detected