1
0
Fork 0
forked from blue/lmdbal

tests for transaction RAII behaviour, transaction documentation, minor doc fixes

This commit is contained in:
Blue 2023-10-18 12:44:53 -03:00
parent de741eda21
commit 6b348023bb
Signed by untrusted user: blue
GPG key ID: 9B203B252A63EE38
8 changed files with 215 additions and 12 deletions

View file

@ -23,9 +23,9 @@ protected:
Transaction(TransactionID txn, const Base* parent);
protected:
TransactionID txn;
bool active;
const Base* parent;
TransactionID txn; /**<\brief Transaction inner handler*/
bool active; /**<\brief Transaction state*/
const Base* parent; /**<\brief Pointer to the database this transaction belongs to*/
};
class WriteTransaction : public Transaction {