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
| 640 | // |
| 641 | // @returns: the number of values read into the out buffer |
| 642 | int64_t ReadValues(int64_t batch_size, T* out) { |
| 643 | int64_t num_decoded = current_decoder_->Decode(out, static_cast<int>(batch_size)); |
| 644 | return num_decoded; |
| 645 | } |
| 646 | |
| 647 | // Read up to batch_size values from the current data page into the |
| 648 | // pre-allocated memory T*, leaving spaces for null entries according |
no test coverage detected