diff options
author | Robert Haas <rhaas@postgresql.org> | 2017-02-03 17:13:33 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2017-02-03 17:16:54 -0500 |
commit | 38c363adf497c0a05858dc00bc49ea42023bd572 (patch) | |
tree | 415f06327dbe4e8477dc2745203b60f76a4f4b43 | |
parent | 871ec0e33673ad9719760131b71a02ecbda82e12 (diff) | |
download | postgresql-38c363adf497c0a05858dc00bc49ea42023bd572.tar.gz postgresql-38c363adf497c0a05858dc00bc49ea42023bd572.zip |
Improve grammar of message about two-phase state files.
When there's only one two-phase state file, there's also only one
long-running prepared transaction. Adjust the message text
accordingly.
Nikhil Sontakke
Discussion: http://postgr.es/m/CAMGcDxcmR_DWZXXndGoPzVQx=B17A5=RviEA1qNaF=FWLy5Whw@mail.gmail.com
-rw-r--r-- | src/backend/access/transam/twophase.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/twophase.c b/src/backend/access/transam/twophase.c index 6fde2bd8bfd..50c70b29204 100644 --- a/src/backend/access/transam/twophase.c +++ b/src/backend/access/transam/twophase.c @@ -1647,7 +1647,7 @@ CheckPointTwoPhase(XLogRecPtr redo_horizon) if (log_checkpoints && serialized_xacts > 0) ereport(LOG, (errmsg_plural("%u two-phase state file was written " - "for long-running prepared transactions", + "for a long-running prepared transaction", "%u two-phase state files were written " "for long-running prepared transactions", serialized_xacts, |