From: Tom Lane Date: Fri, 23 Sep 2016 14:44:50 +0000 (-0400) Subject: Remove useless code. X-Git-Tag: REL_10_BETA1~1678 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=959ea7fa76120449efa5d85ae351abd1d6e5480c;p=postgresql Remove useless code. Apparent copy-and-pasteo in standby_desc_invalidations() had two entries for msg->id == SHAREDINVALRELMAP_ID. Aleksander Alekseev Discussion: <20160923090814.GB1238@e733> --- diff --git a/src/backend/access/rmgrdesc/standbydesc.c b/src/backend/access/rmgrdesc/standbydesc.c index 13797a3d2f..8f19bb0a60 100644 --- a/src/backend/access/rmgrdesc/standbydesc.c +++ b/src/backend/access/rmgrdesc/standbydesc.c @@ -121,13 +121,11 @@ standby_desc_invalidations(StringInfo buf, else if (msg->id == SHAREDINVALSMGR_ID) appendStringInfoString(buf, " smgr"); /* not expected, but print something anyway */ - else if (msg->id == SHAREDINVALRELMAP_ID) - appendStringInfoString(buf, " relmap"); else if (msg->id == SHAREDINVALRELMAP_ID) appendStringInfo(buf, " relmap db %u", msg->rm.dbId); else if (msg->id == SHAREDINVALSNAPSHOT_ID) appendStringInfo(buf, " snapshot %u", msg->sn.relId); else - appendStringInfo(buf, " unknown id %d", msg->id); + appendStringInfo(buf, " unrecognized id %d", msg->id); } }