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