File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1385,12 +1385,12 @@ struct MDB_txn {
1385
1385
#define MDB_TXN_NOSYNC MDB_NOSYNC /**< don't sync this txn on commit */
1386
1386
#define MDB_TXN_RDONLY MDB_RDONLY /**< read-only transaction */
1387
1387
/* internal txn flags */
1388
- #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 */
1388
+ #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 */
1394
1394
/** most operations on the txn are currently illegal */
1395
1395
#define MDB_TXN_BLOCKED (MDB_TXN_FINISHED|MDB_TXN_ERROR|MDB_TXN_HAS_CHILD)
1396
1396
/** @} */
You can’t perform that action at this time.
0 commit comments