aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFujii Masao <fujii@postgresql.org>2019-11-21 22:17:28 +0900
committerFujii Masao <fujii@postgresql.org>2019-11-21 22:17:28 +0900
commit43a54a3bccd7dc6be798475214d561f3e93b3055 (patch)
treefa7bc66d26f1c9199db9f6bf7d646f14a4b2091c /src
parente6d8069522c8bde8239dd1fedfb4984efa4b3a1a (diff)
downloadpostgresql-43a54a3bccd7dc6be798475214d561f3e93b3055.tar.gz
postgresql-43a54a3bccd7dc6be798475214d561f3e93b3055.zip
Bump WAL version.
Oversight in commit e6d8069522. Since that commit changed the format of XLOG_DBASE_DROP WAL record, XLOG_PAGE_MAGIC needs to be bumped. Spotted by Michael Paquier
Diffstat (limited to 'src')
-rw-r--r--src/include/access/xlog_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/xlog_internal.h b/src/include/access/xlog_internal.h
index 3f0de6625d7..e7e10beb4cd 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 0xD101 /* can be used as WAL version indicator */
+#define XLOG_PAGE_MAGIC 0xD102 /* can be used as WAL version indicator */
typedef struct XLogPageHeaderData
{