| 1990 | } |
| 1991 | |
| 1992 | void ReadValuesDense(int64_t values_to_read) override { |
| 1993 | int64_t num_decoded = this->current_decoder_->DecodeArrowNonNull( |
| 1994 | static_cast<int>(values_to_read), &array_builder_); |
| 1995 | CheckNumberDecoded(num_decoded, values_to_read); |
| 1996 | ResetValues(); |
| 1997 | } |
| 1998 | |
| 1999 | void ReadValuesSpaced(int64_t values_to_read, int64_t null_count) override { |
| 2000 | int64_t num_decoded = this->current_decoder_->DecodeArrow( |
nothing calls this directly
no test coverage detected