aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2021-06-29 13:57:45 +0900
committerMichael Paquier <michael@paquier.xyz>2021-06-29 13:57:45 +0900
commit445e36ad4e14480a3c97d0f973a3532912424e85 (patch)
tree7555cc49667910b9138946bbd7a50508b4b880a0 /src
parent47f514dd9a0022a04d321b627b2e991cb85396e2 (diff)
downloadpostgresql-445e36ad4e14480a3c97d0f973a3532912424e85.tar.gz
postgresql-445e36ad4e14480a3c97d0f973a3532912424e85.zip
Bump XLOG_PAGE_MAGIC for format changes related to FPW compression
Oversight in 4035cd5, spotted by Tom Lane. Discussion: https://postgr.es/m/365778.1624941613@sss.pgh.pa.us
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 26a743b6b6c..3b5eceff658 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 0xD10D /* can be used as WAL version indicator */
+#define XLOG_PAGE_MAGIC 0xD10E /* can be used as WAL version indicator */
typedef struct XLogPageHeaderData
{