aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2022-03-12 09:39:13 +0900
committerMichael Paquier <michael@paquier.xyz>2022-03-12 09:39:13 +0900
commit8e375ea4a0e95dd0d74f11c439cce4498bf80bd7 (patch)
treebd2a73cba94ab820bbda64b68e111bb6589561bf /src
parent3a46a45f6f009785b46188ed862afbccfb4cf56a (diff)
downloadpostgresql-8e375ea4a0e95dd0d74f11c439cce4498bf80bd7.tar.gz
postgresql-8e375ea4a0e95dd0d74f11c439cce4498bf80bd7.zip
Bump XLOG_PAGE_MAGIC due to the addition of wal_compression=zstd
While on it, fix a thinko in the docs, introduced by the same commit. Oversights in e953732. Reported-by: Justin Pryzby Discussion: https://postgr.es/m/20220311214900.GN28503@telsasoft.com
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 849954a8e5a..0e94833129a 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 0xD10E /* can be used as WAL version indicator */
+#define XLOG_PAGE_MAGIC 0xD10F /* can be used as WAL version indicator */
typedef struct XLogPageHeaderData
{