We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c42900 commit b737de0Copy full SHA for b737de0
src/backend/access/rmgrdesc/standbydesc.c
@@ -136,6 +136,8 @@ standby_desc_invalidations(StringInfo buf,
136
appendStringInfo(buf, " relmap db %u", msg->rm.dbId);
137
else if (msg->id == SHAREDINVALSNAPSHOT_ID)
138
appendStringInfo(buf, " snapshot %u", msg->sn.relId);
139
+ else if (msg->id == SHAREDINVALUSERCACHE_ID)
140
+ appendStringInfo(buf, " usercache %u", msg->usr.arg2);
141
else
142
appendStringInfo(buf, " unrecognized id %d", msg->id);
143
}
0 commit comments