| 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_; |
nothing calls this directly
no test coverage detected