| 426 | } |
| 427 | |
| 428 | bool ChunkedNodeGroup::hasAnyUpdates(const Transaction* transaction, column_id_t columnID, |
| 429 | row_idx_t startRow, length_t numRowsToCheck) const { |
| 430 | return getColumnChunk(columnID).hasUpdates(transaction, startRow, numRowsToCheck); |
| 431 | } |
| 432 | |
| 433 | row_idx_t ChunkedNodeGroup::getNumDeletions(const Transaction* transaction, row_idx_t startRow, |
| 434 | length_t numRowsToCheck) const { |
no test coverage detected