| 197 | std::shared_ptr<Schema> IntegrationJsonReader::schema() const { return impl_->schema(); } |
| 198 | |
| 199 | int IntegrationJsonReader::num_record_batches() const { |
| 200 | return impl_->num_record_batches(); |
| 201 | } |
| 202 | |
| 203 | Result<std::shared_ptr<RecordBatch>> IntegrationJsonReader::ReadRecordBatch(int i) const { |
| 204 | return impl_->ReadRecordBatch(i); |
no outgoing calls