| 602 | } |
| 603 | |
| 604 | Value getRandomValue() { |
| 605 | return Value( |
| 606 | std::string(deterministicRandom()->randomInt(valueSizeRange.first, valueSizeRange.second + 1), 'x')); |
| 607 | } |
| 608 | |
| 609 | // Prevent a write only transaction whose commit was previously cancelled from being reordered after this |
| 610 | // transaction |
no test coverage detected