diff options
author | Tom Lane | 2021-07-13 19:01:01 +0000 |
---|---|---|
committer | Tom Lane | 2021-07-13 19:01:01 +0000 |
commit | d68a00391214be2020e49be4b55f761d47a5c229 (patch) | |
tree | 766b2aebf10bbe67fb38bcc012425c11d06792eb /src/include/utils/inval.h | |
parent | e0271d5f1e871dd61efc26bda8a0b556c7935901 (diff) |
Rename debug_invalidate_system_caches_always to debug_discard_caches.
The name introduced by commit 4656e3d66 was agreed to be unreasonably
long. To match this change, rename initdb's recently-added
--clobber-cache option to --discard-caches.
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/include/utils/inval.h')
-rw-r--r-- | src/include/utils/inval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/utils/inval.h b/src/include/utils/inval.h index a7e04722d01..770672890b0 100644 --- a/src/include/utils/inval.h +++ b/src/include/utils/inval.h @@ -18,7 +18,7 @@ #include "storage/relfilenode.h" #include "utils/relcache.h" -extern PGDLLIMPORT int debug_invalidate_system_caches_always; +extern PGDLLIMPORT int debug_discard_caches; typedef void (*SyscacheCallbackFunction) (Datum arg, int cacheid, uint32 hashvalue); typedef void (*RelcacheCallbackFunction) (Datum arg, Oid relid); |