| 409 | } |
| 410 | |
| 411 | Version DLTransaction::getCommittedVersion() { |
| 412 | int64_t version; |
| 413 | throwIfError(api->transactionGetCommittedVersion(tr, &version)); |
| 414 | return version; |
| 415 | } |
| 416 | |
| 417 | ThreadFuture<int64_t> DLTransaction::getApproximateSize() { |
| 418 | if (!api->transactionGetApproximateSize) { |
nothing calls this directly
no test coverage detected