summaryrefslogtreecommitdiff
path: root/src/include/btree.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/btree.h')
-rw-r--r--src/include/btree.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/include/btree.h b/src/include/btree.h
index deecd8f6d88..98ce4c22c10 100644
--- a/src/include/btree.h
+++ b/src/include/btree.h
@@ -146,12 +146,14 @@ struct __wt_btree {
/* Flags values up to 0xff are reserved for WT_DHANDLE_* */
#define WT_BTREE_BULK 0x00100 /* Bulk-load handle */
#define WT_BTREE_IN_MEMORY 0x00200 /* Cache-resident object */
-#define WT_BTREE_NO_EVICTION 0x00400 /* Disable eviction */
-#define WT_BTREE_NO_LOGGING 0x00800 /* Disable logging */
-#define WT_BTREE_SALVAGE 0x01000 /* Handle is for salvage */
-#define WT_BTREE_SKIP_CKPT 0x02000 /* Handle skipped checkpoint */
-#define WT_BTREE_UPGRADE 0x04000 /* Handle is for upgrade */
-#define WT_BTREE_VERIFY 0x08000 /* Handle is for verify */
+#define WT_BTREE_LOOKASIDE 0x00400 /* Look-aside table */
+#define WT_BTREE_NO_CHECKPOINT 0x00800 /* Disable checkpoints */
+#define WT_BTREE_NO_EVICTION 0x01000 /* Disable eviction */
+#define WT_BTREE_NO_LOGGING 0x02000 /* Disable logging */
+#define WT_BTREE_SALVAGE 0x04000 /* Handle is for salvage */
+#define WT_BTREE_SKIP_CKPT 0x08000 /* Handle skipped checkpoint */
+#define WT_BTREE_UPGRADE 0x10000 /* Handle is for upgrade */
+#define WT_BTREE_VERIFY 0x20000 /* Handle is for verify */
uint32_t flags;
};