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>
This commit is contained in:
Tom Lane 2016-09-23 10:44:50 -04:00
parent 8e6b4ee21f
commit 959ea7fa76
1 changed files with 1 additions and 3 deletions

View File

@ -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);
}
}