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

Method ReadValues

cpp/src/parquet/column_reader.cc:642–645  ·  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

640 //
641 // @returns: the number of values read into the out buffer
642 int64_t ReadValues(int64_t batch_size, T* out) {
643 int64_t num_decoded = current_decoder_->Decode(out, static_cast<int>(batch_size));
644 return num_decoded;
645 }
646
647 // Read up to batch_size values from the current data page into the
648 // 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