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

Method NextChunk

cpp/src/parquet/arrow/reader_internal.h:74–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72 virtual ~FileColumnIterator() {}
73
74 std::unique_ptr<::parquet::PageReader> NextChunk() {
75 if (row_groups_.empty()) {
76 return nullptr;
77 }
78
79 row_group_index_ = row_groups_.front();
80 auto row_group_reader = reader_->RowGroup(row_group_index_);
81 row_groups_.pop_front();
82 return row_group_reader->GetColumnPageReader(column_index_);
83 }
84
85 const SchemaDescriptor* schema() const { return schema_; }
86

Callers 1

NextRowGroupMethod · 0.45

Calls 3

emptyMethod · 0.45
RowGroupMethod · 0.45
GetColumnPageReaderMethod · 0.45

Tested by

no test coverage detected