| 374 | // The maximum value that capacity_ ever took, before MarkCapacity() might have changed |
| 375 | // it. |
| 376 | int ALWAYS_INLINE InitialCapacity() const { |
| 377 | return tuple_ptrs_size_ / (num_tuples_per_row_ * sizeof(Tuple*)); |
| 378 | } |
| 379 | |
| 380 | const RowDescriptor* row_desc() const { return row_desc_; } |
| 381 |