summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2009-09-01 04:15:45 +0000
committerTom Lane2009-09-01 04:15:45 +0000
commite1483d4fb3e6ca8d2b97baf81863333c8d6b4189 (patch)
tree077e6b1836643f4476324e1a21b2f0314c4c0a25
parent4e855e43b27db132a03368610cda03188d9fe3a1 (diff)
Actually, we need to bump the format identifier on twophase files
because of readjustment of 2PC rmgr IDs for flatfile removal.
-rw-r--r--src/backend/access/transam/twophase.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/twophase.c b/src/backend/access/transam/twophase.c
index 9434f8ff2e..195c90c794 100644
--- a/src/backend/access/transam/twophase.c
+++ b/src/backend/access/transam/twophase.c
@@ -716,7 +716,7 @@ TwoPhaseGetDummyProc(TransactionId xid)
/*
* Header for a 2PC state file
*/
-#define TWOPHASE_MAGIC 0x57F94531 /* format identifier */
+#define TWOPHASE_MAGIC 0x57F94532 /* format identifier */
typedef struct TwoPhaseFileHeader
{