From: Amit Kapila Date: Mon, 9 Mar 2026 09:40:03 +0000 (+0530) Subject: Remove trailing period from errmsg in subscriptioncmds.c. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=06d83022628e6bfa9c4bd1feabe2b41e0bdc1310;p=thirdparty%2Fpostgresql.git Remove trailing period from errmsg in subscriptioncmds.c. Author: Sahitya Chandra Discussion: https://postgr.es/m/20260308142806.181309-1-sahityajb@gmail.com --- diff --git a/src/backend/commands/subscriptioncmds.c b/src/backend/commands/subscriptioncmds.c index 9e21d7a7df9..724637cff5b 100644 --- a/src/backend/commands/subscriptioncmds.c +++ b/src/backend/commands/subscriptioncmds.c @@ -2993,7 +2993,7 @@ check_pub_dead_tuple_retention(WalReceiverConn *wrconn) if (remote_in_recovery) ereport(ERROR, errcode(ERRCODE_FEATURE_NOT_SUPPORTED), - errmsg("cannot enable retain_dead_tuples if the publisher is in recovery.")); + errmsg("cannot enable retain_dead_tuples if the publisher is in recovery")); ExecDropSingleTupleTableSlot(slot);