Read up to batch_size values from the current data page into the pre-allocated memory T @returns: the number of values read into the out buffer
| 655 | // |
| 656 | // @returns: the number of values read into the out buffer |
| 657 | int64_t ReadValues(int64_t batch_size, T* out) { |
| 658 | int64_t num_decoded = current_decoder_->Decode(out, static_cast<int>(batch_size)); |
| 659 | return num_decoded; |
| 660 | } |
| 661 | |
| 662 | // Read up to batch_size values from the current data page into the |
| 663 | // pre-allocated memory T*, leaving spaces for null entries according |
no test coverage detected