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

Method ReadValues

cpp/src/parquet/column_reader.cc:657–660  ·  view source on GitHub ↗

Read up to batch_size values from the current data page into the pre-allocated memory T @returns: the number of values read into the out buffer

Source from the content-addressed store, hash-verified

655 //
656 // @returns: the number of values read into the out buffer
657 int64_t ReadValues(int64_t batch_size, T* out) {
658 int64_t num_decoded = current_decoder_->Decode(out, static_cast<int>(batch_size));
659 return num_decoded;
660 }
661
662 // Read up to batch_size values from the current data page into the
663 // pre-allocated memory T*, leaving spaces for null entries according

Callers 2

ReadBatchMethod · 0.80

Calls 1

DecodeMethod · 0.45

Tested by

no test coverage detected