* InvalidateSystemCaches * * This blows away all tuples in the system catalog caches and * all the cached relation descriptors and smgr cache entries. * Relation descriptors that have positive refcounts are then rebuilt. * * We call this when we see a shared-inval-queue overflow signal, * since that tells us we've lost some shared-inval messages and hence * don't know what needs to
| 711 | * don't know what needs to be invalidated. |
| 712 | */ |
| 713 | void |
| 714 | InvalidateSystemCaches(void) |
| 715 | { |
| 716 | InvalidateSystemCachesExtended(false); |
| 717 | } |
| 718 | |
| 719 | void |
| 720 | InvalidateSystemCachesExtended(bool debug_discard) |
no test coverage detected