diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2014-09-05 01:20:33 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2014-09-05 01:25:27 -0400 |
commit | 303f4d1012a20102d9fec6f486da0b381184a718 (patch) | |
tree | 6affe514b61f198d1f53914341da0bd051f944e6 /src/backend/replication/logical/reorderbuffer.c | |
parent | d85e7fac415722bccc83dc96baccdb398ea5a2f4 (diff) | |
download | postgresql-303f4d1012a20102d9fec6f486da0b381184a718.tar.gz postgresql-303f4d1012a20102d9fec6f486da0b381184a718.zip |
Assorted message fixes and improvements
Diffstat (limited to 'src/backend/replication/logical/reorderbuffer.c')
-rw-r--r-- | src/backend/replication/logical/reorderbuffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/replication/logical/reorderbuffer.c b/src/backend/replication/logical/reorderbuffer.c index 2b0929cb78b..ab09296763a 100644 --- a/src/backend/replication/logical/reorderbuffer.c +++ b/src/backend/replication/logical/reorderbuffer.c @@ -2350,7 +2350,7 @@ ReorderBufferRestoreCleanup(ReorderBuffer *rb, ReorderBufferTXN *txn) if (unlink(path) != 0 && errno != ENOENT) ereport(ERROR, (errcode_for_file_access(), - errmsg("could not unlink file \"%s\": %m", path))); + errmsg("could not remove file \"%s\": %m", path))); } } @@ -2407,7 +2407,7 @@ StartupReorderBuffer(void) if (unlink(path) != 0) ereport(PANIC, (errcode_for_file_access(), - errmsg("could not unlink file \"%s\": %m", + errmsg("could not remove file \"%s\": %m", path))); } } |