diff options
author | Robert Haas <rhaas@postgresql.org> | 2012-08-30 13:26:45 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2012-08-30 13:27:18 -0400 |
commit | 657face6fea6e8e29944b839c4e5ceb6c63e251e (patch) | |
tree | 693180525a67abfab5f73ced9801f703f5425d16 /src/backend | |
parent | ed597d0c322dd42c362701125d4ff55eb7b675f5 (diff) | |
download | postgresql-657face6fea6e8e29944b839c4e5ceb6c63e251e.tar.gz postgresql-657face6fea6e8e29944b839c4e5ceb6c63e251e.zip |
Add missing period to detail message.
Per note from Peter Eisentraut.
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/storage/lmgr/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/lmgr/proc.c b/src/backend/storage/lmgr/proc.c index ffab85f665e..2d423ffebff 100644 --- a/src/backend/storage/lmgr/proc.c +++ b/src/backend/storage/lmgr/proc.c @@ -1040,7 +1040,7 @@ ProcSleep(LOCALLOCK *locallock, LockMethod lockMethodTable) initStringInfo(&logbuf); DescribeLockTag(&locktagbuf, &lock->tag); appendStringInfo(&logbuf, - _("Process %d waits for %s on %s"), + _("Process %d waits for %s on %s."), MyProcPid, GetLockmodeName(lock->tag.locktag_lockmethodid, lockmode), |