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

Method ReadValuesSpaced

cpp/src/parquet/column_reader.cc:1999–2005  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1997 }
1998
1999 void ReadValuesSpaced(int64_t values_to_read, int64_t null_count) override {
2000 int64_t num_decoded = this->current_decoder_->DecodeArrow(
2001 static_cast<int>(values_to_read), static_cast<int>(null_count),
2002 valid_bits_->mutable_data(), values_written_, &array_builder_);
2003 CheckNumberDecoded(num_decoded, values_to_read - null_count);
2004 ResetValues();
2005 }
2006
2007 private:
2008 const int byte_width_;

Callers

nothing calls this directly

Calls 3

CheckNumberDecodedFunction · 0.85
DecodeArrowMethod · 0.45
mutable_dataMethod · 0.45

Tested by

no test coverage detected