| 500 | uint64_t usedSize() const override; |
| 501 | |
| 502 | uint64_t estimateRowSize() { |
| 503 | return rows_.size() > 0 ? rowBuffer_->allocatedBytes() / rows_.size() : 0; |
| 504 | } |
| 505 | |
| 506 | int64_t totalRowSize() { |
| 507 | return rowBuffer_->allocatedBytes(); |
nothing calls this directly
no test coverage detected