diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2019-04-30 10:00:38 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2019-04-30 10:33:37 -0400 |
commit | 9f8b717a80c59e4a8e8091a8ff6c6f7666a69c33 (patch) | |
tree | 00a4494408f5579e258d719e37eaac59d13200ac /src/backend/access/transam | |
parent | 9a83afecb7ec6e828b7dbef3133f3dd8b0b4dddb (diff) | |
download | postgresql-9f8b717a80c59e4a8e8091a8ff6c6f7666a69c33.tar.gz postgresql-9f8b717a80c59e4a8e8091a8ff6c6f7666a69c33.zip |
Message style fixes
Diffstat (limited to 'src/backend/access/transam')
-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 a399c0052d9..21e028283c1 100644 --- a/src/backend/access/transam/twophase.c +++ b/src/backend/access/transam/twophase.c @@ -2190,12 +2190,12 @@ ProcessTwoPhaseBuffer(TransactionId xid, if (fromdisk) ereport(ERROR, (errcode(ERRCODE_DATA_CORRUPTED), - errmsg("corrupted two-phase state file for transaction \"%u\"", + errmsg("corrupted two-phase state file for transaction %u", xid))); else ereport(ERROR, (errcode(ERRCODE_DATA_CORRUPTED), - errmsg("corrupted two-phase state in memory for transaction \"%u\"", + errmsg("corrupted two-phase state in memory for transaction %u", xid))); } |