Returns the number of bytes allocated to the hash table from the block manager.
| 937 | |
| 938 | /// Returns the number of bytes allocated to the hash table from the block manager. |
| 939 | int64_t ByteSize() const { |
| 940 | return num_buckets_ * sizeof(Bucket) + total_data_page_size_; |
| 941 | } |
| 942 | |
| 943 | /// Returns an iterator at the beginning of the hash table. Advancing this iterator |
| 944 | /// will traverse all elements. |
no outgoing calls