aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2010-12-29 07:19:21 -0500
committerRobert Haas <rhaas@postgresql.org>2010-12-29 07:19:21 -0500
commitd2bc1c9907115f5773927febf823c8d7ae92155b (patch)
treeab32fcd118cb90016a92b919ab2676f4ac95539f
parent53dbc27c62d8e1b6c5253feba04a5094cb8fe046 (diff)
downloadpostgresql-d2bc1c9907115f5773927febf823c8d7ae92155b.tar.gz
postgresql-d2bc1c9907115f5773927febf823c8d7ae92155b.zip
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.
-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 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
{