diff options
| author | Michael Paquier <michael@paquier.xyz> | 2021-06-29 13:57:45 +0900 |
|---|---|---|
| committer | Michael Paquier <michael@paquier.xyz> | 2021-06-29 13:57:45 +0900 |
| commit | 445e36ad4e14480a3c97d0f973a3532912424e85 (patch) | |
| tree | 7555cc49667910b9138946bbd7a50508b4b880a0 | |
| parent | 47f514dd9a0022a04d321b627b2e991cb85396e2 (diff) | |
| download | postgresql-445e36ad4e14480a3c97d0f973a3532912424e85.tar.gz | |
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
| -rw-r--r-- | src/include/access/xlog_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/xlog_internal.h b/src/include/access/xlog_internal.h index 26a743b6b6..3b5eceff65 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 { |
