pgsql: Improve some error message strings and errcodes

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Improve some error message strings and errcodes
Date: 2018-09-04 18:08:50
Message-ID: E1fxFkw-0006Tr-Oe@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Improve some error message strings and errcodes

This makes a bit less work for translators, by unifying error strings a
bit more with what the rest of the code does, this time for three error
strings in autoprewarm and one in base backup code.

After some code review of slot.c, some file-access errcodes are reported
but lead to an incorrect internal error, while corrupted data makes the
most sense, similarly to the previous work done in e41d0a1. Also,
after calling rmtree(), a WARNING gets reported, which is a duplicate of
what the internal call report, so make the code more consistent with all
other code paths calling this function.

Author: Michael Paquier
Discussion: https://postgr.es/m/20180902200747.GC1343@paquier.xyz

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/d6e98ebe375e115c29028f9bd090f0f7e07e2527

Modified Files
--------------
contrib/pg_prewarm/autoprewarm.c | 6 +++---
src/backend/replication/basebackup.c | 2 +-
src/backend/replication/slot.c | 17 ++++++++---------
3 files changed, 12 insertions(+), 13 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2018-09-04 19:03:21 Re: pgsql: Clean up after TAP tests in oid2name and vacuumlo.
Previous Message Tom Lane 2018-09-04 18:04:35 pgsql: Fully enforce uniqueness of constraint names.