| 1975 | } |
| 1976 | |
| 1977 | void ReadValuesDense(int64_t values_to_read) override { |
| 1978 | int64_t num_decoded = this->current_decoder_->DecodeArrowNonNull( |
| 1979 | static_cast<int>(values_to_read), &array_builder_); |
| 1980 | CheckNumberDecoded(num_decoded, values_to_read); |
| 1981 | ResetValues(); |
| 1982 | } |
| 1983 | |
| 1984 | void ReadValuesSpaced(int64_t values_to_read, int64_t null_count) override { |
| 1985 | int64_t num_decoded = this->current_decoder_->DecodeArrow( |
nothing calls this directly
no test coverage detected