File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1386,11 +1386,11 @@ struct MDB_txn {
13861386#define MDB_TXN_RDONLY MDB_RDONLY /**< read-only transaction */
13871387 /* internal txn flags */
13881388#define MDB_TXN_WRITEMAP MDB_WRITEMAP /**< copy of #MDB_env flag in writers */
1389- #define MDB_TXN_FINISHED 0x01 /**< txn is finished or never began */
1390- #define MDB_TXN_ERROR 0x02 /**< txn is unusable after an error */
1391- #define MDB_TXN_DIRTY 0x04 /**< must write, even if dirty list is empty */
1392- #define MDB_TXN_SPILLS 0x08 /**< txn or a parent has spilled pages */
1393- #define MDB_TXN_HAS_CHILD 0x10 /**< txn has an #MDB_txn.%mt_child */
1389+ #define MDB_TXN_FINISHED 0x01 /**< txn is finished or never began */
1390+ #define MDB_TXN_ERROR 0x02 /**< txn is unusable after an error */
1391+ #define MDB_TXN_DIRTY 0x04 /**< must write, even if dirty list is empty */
1392+ #define MDB_TXN_SPILLS 0x08 /**< txn or a parent has spilled pages */
1393+ #define MDB_TXN_HAS_CHILD 0x10 /**< txn has an #MDB_txn.%mt_child */
13941394 /** most operations on the txn are currently illegal */
13951395#define MDB_TXN_BLOCKED (MDB_TXN_FINISHED|MDB_TXN_ERROR|MDB_TXN_HAS_CHILD)
13961396/** @} */
You can’t perform that action at this time.
0 commit comments