* CacheInvalidateRelcacheAll * Register invalidation of the whole relcache at the end of command. * * This is used by alter publication as changes in publications may affect * large number of tables. */
| 1396 | * large number of tables. |
| 1397 | */ |
| 1398 | void |
| 1399 | CacheInvalidateRelcacheAll(void) |
| 1400 | { |
| 1401 | PrepareInvalidationState(); |
| 1402 | |
| 1403 | RegisterRelcacheInvalidation(InvalidOid, InvalidOid); |
| 1404 | } |
| 1405 | |
| 1406 | /* |
| 1407 | * CacheInvalidateRelcacheByTuple |
no test coverage detected