| 470 | } |
| 471 | |
| 472 | Future<Void> TransactionImpl::commit() { |
| 473 | return backToFuture<Void>(fdb_transaction_commit(tr), [](Reference<CFuture> f) { |
| 474 | throw_on_error(fdb_future_get_error(f->f)); |
| 475 | return Void(); |
| 476 | }); |
| 477 | } |
| 478 | |
| 479 | Version TransactionImpl::getCommittedVersion() { |
| 480 | Version v; |
nothing calls this directly
no test coverage detected