| 2070 | } |
| 2071 | |
| 2072 | void ReadValuesDense(int64_t values_to_read) override { |
| 2073 | int64_t num_decoded = this->current_decoder_->DecodeArrowNonNull( |
| 2074 | static_cast<int>(values_to_read), &accumulator_); |
| 2075 | CheckNumberDecoded(num_decoded, values_to_read); |
| 2076 | ResetValues(); |
| 2077 | } |
| 2078 | |
| 2079 | void ReadValuesSpaced(int64_t values_to_read, int64_t null_count) override { |
| 2080 | int64_t num_decoded = this->current_decoder_->DecodeArrow( |
nothing calls this directly
no test coverage detected