Re: replication_slots usability issue
Petr Jelinek <petr.jelinek@2ndquadrant.com>
From: Petr Jelinek <petr.jelinek@2ndquadrant.com>
To: Andres Freund <andres@anarazel.de>, Michael Paquier <michael@paquier.xyz>
Cc: Alvaro Herrera <alvherre@2ndquadrant.com>,
"Joshua D. Drake" <jd@commandprompt.com>,
pgsql-hackers <pgsql-hackers@postgresql.org>
Date: 2018-11-02T14:51:34Z
Lists: pgsql-hackers
On 01/11/2018 18:54, Andres Freund wrote:>
>> Also, from 691d79a which you just committed:
>> + ereport(FATAL,
>> + (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
>> + errmsg("logical replication slots \"%s\" exists, but wal_level < logical",
>> + NameStr(cp.slotdata.name)),
>> I can see one grammar mistake here, as you refer to only one slot here.
>> The error messages should read:
>> "logical replication slot \"%s\" exists, but wal_level < logical"
>> and:
>> "physical replication slot \"%s\" exists, but wal_level < replica"
>
> Darnit. Fixed. Thanks.
>
Since we are fixing this message, shouldn't the hint for logical slot
say "Change wal_level to be logical or higher" rather than "replica or
higher" :)
--
Petr Jelinek http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services
Commits
-
Fix copy-paste error in errhint() introduced in 691d79a07933.
- b7301e3a7b63 9.4.20 landed
- a0e450e91ee9 9.5.15 landed
- ac36e6aee808 10.6 landed
- a16e8b440132 9.6.11 landed
- 9c7049ef4f9c 11.1 landed
- a3fb382e9c16 12.0 landed
-
Lower error level from PANIC to FATAL when restoring slots at startup
- 6286efb5240f 12.0 landed
-
Fix error message typo introduced 691d79a07933.
- b0fa768c61b3 9.4.20 landed
- 87f76f1324b2 9.6.11 landed
- 877b00561eea 10.6 landed
- 0446551fc114 11.1 landed
- 8a99f8a82775 12.0 landed
- d554e333e548 9.5.15 landed
-
Disallow starting server with insufficient wal_level for existing slot.
- d35fd17cb58d 9.6.11 landed
- cf358a2c066c 9.4.20 landed
- c33a01c7979d 11.1 landed
- 679cb44e4b56 9.5.15 landed
- 021e1c329d7c 10.6 landed
- 691d79a07933 12.0 landed
-
Allow replication slots to be dropped in single-user mode
- a1f680d962ff 10.5 cited