diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/access/hash_xlog.h | 2 | ||||
-rw-r--r-- | src/include/access/xlog_internal.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/include/access/hash_xlog.h b/src/include/access/hash_xlog.h index dfd92378199..2e64cfa3eaf 100644 --- a/src/include/access/hash_xlog.h +++ b/src/include/access/hash_xlog.h @@ -197,6 +197,8 @@ typedef struct xl_hash_squeeze_page */ typedef struct xl_hash_delete { + bool clear_dead_marking; /* TRUE if this operation clears + * LH_PAGE_HAS_DEAD_TUPLES flag */ bool is_primary_bucket_page; /* TRUE if the operation is for * primary bucket page */ } xl_hash_delete; diff --git a/src/include/access/xlog_internal.h b/src/include/access/xlog_internal.h index b8b15f18752..7957cab98c6 100644 --- a/src/include/access/xlog_internal.h +++ b/src/include/access/xlog_internal.h @@ -31,7 +31,7 @@ /* * Each page of XLOG file has a header like this: */ -#define XLOG_PAGE_MAGIC 0xD095 /* can be used as WAL version indicator */ +#define XLOG_PAGE_MAGIC 0xD096 /* can be used as WAL version indicator */ typedef struct XLogPageHeaderData { |