From d2bc1c9907115f5773927febf823c8d7ae92155b Mon Sep 17 00:00:00 2001
From: Robert Haas <rhaas@postgresql.org>
Date: Wed, 29 Dec 2010 07:19:21 -0500
Subject: [PATCH] Bump XLOG_PAGE_MAGIC.

The unlogged tables patch (commit 53dbc27c62d8e1b6c5253feba04a5094cb8fe046,
2010-12-29) should have done this, since it changes the format of an
XLOG_SMGR_CREATE record.
---
 src/include/access/xlog_internal.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/include/access/xlog_internal.h b/src/include/access/xlog_internal.h
index 29a50838fa4..feae4563e15 100644
--- a/src/include/access/xlog_internal.h
+++ b/src/include/access/xlog_internal.h
@@ -71,7 +71,7 @@ typedef struct XLogContRecord
 /*
  * Each page of XLOG file has a header like this:
  */
-#define XLOG_PAGE_MAGIC 0xD065	/* can be used as WAL version indicator */
+#define XLOG_PAGE_MAGIC 0xD066	/* can be used as WAL version indicator */
 
 typedef struct XLogPageHeaderData
 {
-- 
GitLab