v5-0005-Remind-myself-to-bump-XLOG_PAGE_MAGIC-when-this-i.patch
text/x-patch
Filename: v5-0005-Remind-myself-to-bump-XLOG_PAGE_MAGIC-when-this-i.patch
Type: text/x-patch
Part: 4
Patch
Format: format-patch
Series: patch v5-0005
Subject: Remind myself to bump XLOG_PAGE_MAGIC when this is committed
| File | + | − |
|---|---|---|
| src/include/access/xlog_internal.h | 2 | 1 |
From 6a37a2e9b5d8464382eae5efb983e261cc5905c6 Mon Sep 17 00:00:00 2001
From: Heikki Linnakangas <heikki.linnakangas@iki.fi>
Date: Wed, 20 Mar 2024 14:52:06 +0200
Subject: [PATCH v5 05/26] Remind myself to bump XLOG_PAGE_MAGIC when this is
committed
---
src/include/access/xlog_internal.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/include/access/xlog_internal.h b/src/include/access/xlog_internal.h
index b88b24f0c1e..fd720d87dbb 100644
--- a/src/include/access/xlog_internal.h
+++ b/src/include/access/xlog_internal.h
@@ -31,7 +31,8 @@
/*
* Each page of XLOG file has a header like this:
*/
-#define XLOG_PAGE_MAGIC 0xD114 /* can be used as WAL version indicator */
+/* FIXME: make sure this is still larger than on 'master' before committing! */
+#define XLOG_PAGE_MAGIC 0xD115 /* can be used as WAL version indicator */
typedef struct XLogPageHeaderData
{
--
2.39.2