diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2009-09-01 04:15:45 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2009-09-01 04:15:45 +0000 |
commit | 14f445fccf3735bf5bddf0a90ce0a15be263b576 (patch) | |
tree | 25fa01df02ec8ad12a9369b8fa0af8c2d639ba17 /src | |
parent | b92f7a22b962dcb3d156c561d0dcf7a5e4782681 (diff) | |
download | postgresql-14f445fccf3735bf5bddf0a90ce0a15be263b576.tar.gz postgresql-14f445fccf3735bf5bddf0a90ce0a15be263b576.zip |
Actually, we need to bump the format identifier on twophase files
because of readjustment of 2PC rmgr IDs for flatfile removal.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/transam/twophase.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/twophase.c b/src/backend/access/transam/twophase.c index 6de9c73f6ef..1548c89ca14 100644 --- a/src/backend/access/transam/twophase.c +++ b/src/backend/access/transam/twophase.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/access/transam/twophase.c,v 1.54 2009/06/25 19:05:52 heikki Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/twophase.c,v 1.55 2009/09/01 04:15:45 tgl Exp $ * * NOTES * Each global transaction is associated with a global transaction @@ -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 { |