Set the capacity of the row batch to 'limit' so that only that many rows can be appended to it. The capacity will be restored to its original value when Reset() is called.
| 282 | /// appended to it. The capacity will be restored to its original value when Reset() |
| 283 | /// is called. |
| 284 | void limit_capacity(int limit) { |
| 285 | DCHECK_LE(num_rows_, limit); |
| 286 | capacity_ = limit; |
| 287 | } |
| 288 | |
| 289 | FlushMode flush_mode() const { return flush_mode_; } |
| 290 |
no outgoing calls
no test coverage detected