| 503 | } |
| 504 | |
| 505 | bool ChunkedNodeGroup::hasUpdates() const { |
| 506 | for (const auto& chunk : chunks) { |
| 507 | if (chunk->hasUpdates()) { |
| 508 | return true; |
| 509 | } |
| 510 | } |
| 511 | return false; |
| 512 | } |
| 513 | |
| 514 | // NOLINTNEXTLINE(readability-make-member-function-const): Semantically non-const. |
| 515 | void ChunkedNodeGroup::commitInsert(row_idx_t startRow, row_idx_t numRowsToCommit, |
no outgoing calls
no test coverage detected