| 2130 | explicit ExportedArrayStream(StreamType* stream) : stream_(stream) {} |
| 2131 | |
| 2132 | Status GetSchema(struct ArrowSchema* out_schema) { |
| 2133 | return ExportStreamSchema(reader(), out_schema); |
| 2134 | } |
| 2135 | |
| 2136 | Status GetNext(ArrayType* out_array) { |
| 2137 | return ExportStreamNext(reader(), next_batch_num(), out_array); |
no test coverage detected