MCPcopy Create free account
hub / github.com/apache/arrow / ReadNext

Method ReadNext

r/src/recordbatchreader.cpp:210–214  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208 std::shared_ptr<arrow::Schema> schema() const override { return parent_->schema(); }
209
210 arrow::Status ReadNext(std::shared_ptr<arrow::RecordBatch>* batch_out) override {
211 return SafeCallIntoRVoid(
212 [batch_out, this] { return this->parent_->ReadNext(batch_out); },
213 "SafeRecordBatchReader::ReadNext()");
214 }
215
216 arrow::Status Close() override { return parent_->Close(); }
217

Callers

nothing calls this directly

Calls 2

SafeCallIntoRVoidFunction · 0.85
ReadNextMethod · 0.45

Tested by

no test coverage detected