| 440 | } |
| 441 | |
| 442 | void Replicator::cleanupTransaction(CheckStatusWrapper* status, |
| 443 | SINT64 number) |
| 444 | { |
| 445 | try |
| 446 | { |
| 447 | BatchBlock block(getPool()); |
| 448 | block.header.traNumber = number; |
| 449 | block.buffer = m_manager->getBuffer(); |
| 450 | block.putTag(opCleanupTransaction); |
| 451 | |
| 452 | flush(block, FLUSH_SYNC, BLOCK_END_TRANS); |
| 453 | } |
| 454 | catch (const Exception& ex) |
| 455 | { |
| 456 | ex.stuffException(status); |
| 457 | } |
| 458 | } |
| 459 | |
| 460 | void Replicator::setSequence(CheckStatusWrapper* status, |
| 461 | const char* genName, |
no test coverage detected