@@ -1213,12 +1213,11 @@ CompactCheckpointerRequestQueue(void)
12131213 * backwards from the end of the queue and check whether a request is
12141214 * *preceded* by an earlier, identical request, in the hopes of doing less
12151215 * copying. But that might change the semantics, if there's an
1216- * intervening FORGET_RELATION_FSYNC or FORGET_DATABASE_FSYNC request, so
1217- * we do it this way. It would be possible to be even smarter if we made
1218- * the code below understand the specific semantics of such requests (it
1219- * could blow away preceding entries that would end up being canceled
1220- * anyhow), but it's not clear that the extra complexity would buy us
1221- * anything.
1216+ * intervening SYNC_FORGET_REQUEST or SYNC_FILTER_REQUEST, so we do it
1217+ * this way. It would be possible to be even smarter if we made the code
1218+ * below understand the specific semantics of such requests (it could blow
1219+ * away preceding entries that would end up being canceled anyhow), but
1220+ * it's not clear that the extra complexity would buy us anything.
12221221 */
12231222for (n = 0 ;n < CheckpointerShmem -> num_requests ;n ++ )
12241223{