summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/include/btree.h
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2021-01-11 16:36:37 +1100
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-01-11 06:11:15 +0000
commitb366fe33ed8bf3135664e612a6e90e4cb2acffd9 (patch)
tree189930c0ed50a7ffe4c10a7c82d3c4d4e65a90fd /src/third_party/wiredtiger/src/include/btree.h
parent5366d249622abe86298901e1b7bbfb16c2b3dcfd (diff)
downloadmongo-b366fe33ed8bf3135664e612a6e90e4cb2acffd9.tar.gz
Import wiredtiger: 247de8d7ab4fc8dfd24167a35e94d8afcf16190b from branch mongodb-5.0
ref: 60a57bb9a8..247de8d7ab for: 4.9.0 WT-5111 Fix wt2909_checkpoint_integrity and wt3120_filesys so it is natural to run standalone WT-6863 Reduce code duplication by improving statistics macros WT-6991 Make WT_IS_HS and WT_IS_METADATA consistent - both operating on dhandle WT-7066 Point README doc link to develop/index.html
Diffstat (limited to 'src/third_party/wiredtiger/src/include/btree.h')
-rw-r--r--src/third_party/wiredtiger/src/include/btree.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/third_party/wiredtiger/src/include/btree.h b/src/third_party/wiredtiger/src/include/btree.h
index 85ddcff102d..fb7167663c6 100644
--- a/src/third_party/wiredtiger/src/include/btree.h
+++ b/src/third_party/wiredtiger/src/include/btree.h
@@ -249,14 +249,13 @@ struct __wt_btree {
#define WT_BTREE_CLOSED 0x000400u /* Handle closed */
#define WT_BTREE_IGNORE_CACHE 0x000800u /* Cache-resident object */
#define WT_BTREE_IN_MEMORY 0x001000u /* Cache-resident object */
-#define WT_BTREE_HS 0x002000u /* History store table */
-#define WT_BTREE_NO_CHECKPOINT 0x004000u /* Disable checkpoints */
-#define WT_BTREE_NO_LOGGING 0x008000u /* Disable logging */
-#define WT_BTREE_READONLY 0x010000u /* Handle is readonly */
-#define WT_BTREE_SALVAGE 0x020000u /* Handle is for salvage */
-#define WT_BTREE_SKIP_CKPT 0x040000u /* Handle skipped checkpoint */
-#define WT_BTREE_UPGRADE 0x080000u /* Handle is for upgrade */
-#define WT_BTREE_VERIFY 0x100000u /* Handle is for verify */
+#define WT_BTREE_NO_CHECKPOINT 0x002000u /* Disable checkpoints */
+#define WT_BTREE_NO_LOGGING 0x004000u /* Disable logging */
+#define WT_BTREE_READONLY 0x008000u /* Handle is readonly */
+#define WT_BTREE_SALVAGE 0x010000u /* Handle is for salvage */
+#define WT_BTREE_SKIP_CKPT 0x020000u /* Handle skipped checkpoint */
+#define WT_BTREE_UPGRADE 0x040000u /* Handle is for upgrade */
+#define WT_BTREE_VERIFY 0x080000u /* Handle is for verify */
uint32_t flags;
};