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

Method ReadValuesSpaced

cpp/src/parquet/column_reader.cc:1984–1990  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1982 }
1983
1984 void ReadValuesSpaced(int64_t values_to_read, int64_t null_count) override {
1985 int64_t num_decoded = this->current_decoder_->DecodeArrow(
1986 static_cast<int>(values_to_read), static_cast<int>(null_count),
1987 valid_bits_->mutable_data(), values_written_, &array_builder_);
1988 CheckNumberDecoded(num_decoded, values_to_read - null_count);
1989 ResetValues();
1990 }
1991
1992 private:
1993 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