| 717 | } |
| 718 | |
| 719 | bool BerkeleyBatch::TxnAbort() |
| 720 | { |
| 721 | if (!pdb || !activeTxn) |
| 722 | return false; |
| 723 | int ret = activeTxn->abort(); |
| 724 | activeTxn = nullptr; |
| 725 | return (ret == 0); |
| 726 | } |
| 727 | |
| 728 | bool BerkeleyDatabaseSanityCheck() |
| 729 | { |
no outgoing calls
no test coverage detected