| 1177 | } |
| 1178 | |
| 1179 | int64_t PhjBuilderPartition::EstimatedInMemSize() const { |
| 1180 | return build_rows_->byte_size() + HashTable::EstimateSize(build_rows_->num_rows()); |
| 1181 | } |
| 1182 | |
| 1183 | void PhjBuilderPartition::Close(RowBatch* batch) { |
| 1184 | if (IsClosed()) return; |
nothing calls this directly
no test coverage detected