| 1983 | } |
| 1984 | |
| 1985 | void ReadYourWritesTransactionOptions::reset(Transaction const& tr) { |
| 1986 | memset(this, 0, sizeof(*this)); |
| 1987 | timeoutInSeconds = 0.0; |
| 1988 | maxRetries = -1; |
| 1989 | snapshotRywEnabled = tr.getDatabase()->snapshotRywEnabled; |
| 1990 | } |
| 1991 | |
| 1992 | bool ReadYourWritesTransactionOptions::getAndResetWriteConflictDisabled() { |
| 1993 | bool disabled = nextWriteDisableConflictRange; |
no test coverage detected