diff options
| author | Peter Eisentraut | 2014-09-05 05:20:33 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2014-09-05 05:25:27 +0000 |
| commit | 303f4d1012a20102d9fec6f486da0b381184a718 (patch) | |
| tree | 6affe514b61f198d1f53914341da0bd051f944e6 /src/backend/replication/slot.c | |
| parent | d85e7fac415722bccc83dc96baccdb398ea5a2f4 (diff) | |
Assorted message fixes and improvements
Diffstat (limited to 'src/backend/replication/slot.c')
| -rw-r--r-- | src/backend/replication/slot.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/replication/slot.c b/src/backend/replication/slot.c index b374c6eccf5..f355f13d293 100644 --- a/src/backend/replication/slot.c +++ b/src/backend/replication/slot.c @@ -183,7 +183,7 @@ ReplicationSlotValidateName(const char *name, int elevel) (errcode(ERRCODE_INVALID_NAME), errmsg("replication slot name \"%s\" contains invalid character", name), - errhint("Replication slot names may only contain letters, numbers and the underscore character."))); + errhint("Replication slot names may only contain letters, numbers, and the underscore character."))); return false; } } @@ -454,7 +454,7 @@ ReplicationSlotDropAcquired(void) ereport(fail_softly ? WARNING : ERROR, (errcode_for_file_access(), - errmsg("could not rename \"%s\" to \"%s\": %m", + errmsg("could not rename file \"%s\" to \"%s\": %m", path, tmppath))); } @@ -1041,7 +1041,7 @@ SaveSlotToPath(ReplicationSlot *slot, const char *dir, int elevel) { ereport(elevel, (errcode_for_file_access(), - errmsg("could not rename \"%s\" to \"%s\": %m", + errmsg("could not rename file \"%s\" to \"%s\": %m", tmppath, path))); return; } @@ -1092,7 +1092,7 @@ RestoreSlotFromDisk(const char *name) if (unlink(path) < 0 && errno != ENOENT) ereport(PANIC, (errcode_for_file_access(), - errmsg("could not unlink file \"%s\": %m", path))); + errmsg("could not remove file \"%s\": %m", path))); sprintf(path, "pg_replslot/%s/state", name); |
