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

Method ReadTable

cpp/src/parquet/arrow/reader.cc:434–438  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

432 }
433
434 Status ReadTable(const std::vector<int>& column_indices,
435 std::shared_ptr<::arrow::Table>* out) override {
436 ARROW_ASSIGN_OR_RAISE(*out, impl_->ReadRowGroup(row_group_index_, column_indices));
437 return Status::OK();
438 }
439
440 Status ReadTable(std::shared_ptr<::arrow::Table>* out) override {
441 ARROW_ASSIGN_OR_RAISE(*out, impl_->ReadRowGroup(row_group_index_));

Callers

nothing calls this directly

Calls 3

ARROW_ASSIGN_OR_RAISEFunction · 0.70
OKFunction · 0.50
ReadRowGroupMethod · 0.45

Tested by

no test coverage detected