diff options
Diffstat (limited to 'src/include/utils/syscache.h')
-rw-r--r-- | src/include/utils/syscache.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/utils/syscache.h b/src/include/utils/syscache.h index f97229fcc01..f41a9968fdc 100644 --- a/src/include/utils/syscache.h +++ b/src/include/utils/syscache.h @@ -18,7 +18,7 @@ #include "access/attnum.h" #include "access/htup.h" -/* we purposedly do not include utils/catcache.h here */ +/* we intentionally do not include utils/catcache.h here */ /* * SysCache identifiers. @@ -125,8 +125,9 @@ struct catclist; extern struct catclist *SearchSysCacheList(int cacheId, int nkeys, Datum key1, Datum key2, Datum key3, Datum key4); -extern bool RelationInvalidatesSnapshotsOnly(Oid); -extern bool RelationHasSysCache(Oid); +extern bool RelationInvalidatesSnapshotsOnly(Oid relid); +extern bool RelationHasSysCache(Oid relid); +extern bool RelationSupportsSysCache(Oid relid); /* * The use of the macros below rather than direct calls to the corresponding |