From 959ea7fa76120449efa5d85ae351abd1d6e5480c Mon Sep 17 00:00:00 2001
From: Tom Lane <tgl@sss.pgh.pa.us>
Date: Fri, 23 Sep 2016 10:44:50 -0400
Subject: [PATCH] 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>
---
 src/backend/access/rmgrdesc/standbydesc.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/backend/access/rmgrdesc/standbydesc.c b/src/backend/access/rmgrdesc/standbydesc.c
index 13797a3d2f4..8f19bb0a609 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);
 	}
 }
-- 
GitLab