> Support invalidating replication slots due to horizon and wal_level This adds the following message.
+ appendStringInfo(&err_detail, _("Logical decoding on standby requires wal_level to be at least logical on the primary server")); This message is missing a period at the end. regards. diff --git a/src/backend/replication/slot.c b/src/backend/replication/slot.c index 41848f0ac6..e73fd2d13b 100644 --- a/src/backend/replication/slot.c +++ b/src/backend/replication/slot.c @@ -1274,7 +1274,7 @@ ReportSlotInvalidation(ReplicationSlotInvalidationCause cause, break; case RS_INVAL_WAL_LEVEL: - appendStringInfo(&err_detail, _("Logical decoding on standby requires wal_level to be at least logical on the primary server")); + appendStringInfo(&err_detail, _("Logical decoding on standby requires wal_level to be at least logical on the primary server.")); break; case RS_INVAL_NONE: pg_unreachable(); -- Kyotaro Horiguchi NTT Open Source Software Center