Add the 'row_batch' to the list. The RowBatch* and all of its resources are owned by the caller.
| 98 | /// Add the 'row_batch' to the list. The RowBatch* and all of its resources are owned |
| 99 | /// by the caller. |
| 100 | void AddRowBatch(RowBatch* row_batch) { |
| 101 | row_batches_.push_back(row_batch); |
| 102 | total_num_rows_ += row_batch->num_rows(); |
| 103 | } |
| 104 | |
| 105 | /// Resets the list. |
| 106 | void Reset() { |