aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2001-01-05 22:54:37 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2001-01-05 22:54:37 +0000
commit81d08fcffeed731e6b48bb7474d56c660f0e8294 (patch)
tree756b2a81e8390ba5025a5bf81ee148efbe34ccd5 /src/include
parent2fb6cc904555024ef668f5ba096b5bf0ddd3ec26 (diff)
downloadpostgresql-81d08fcffeed731e6b48bb7474d56c660f0e8294.tar.gz
postgresql-81d08fcffeed731e6b48bb7474d56c660f0e8294.zip
Rename and document some invalidation routines to make it clearer that
they don't themselves flush any cache entries, only add to to-do lists that will be processed later.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/utils/catcache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/catcache.h b/src/include/utils/catcache.h
index 70c988ca185..a24307bd90f 100644
--- a/src/include/utils/catcache.h
+++ b/src/include/utils/catcache.h
@@ -13,7 +13,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: catcache.h,v 1.29 2000/11/24 04:16:11 tgl Exp $
+ * $Id: catcache.h,v 1.30 2001/01/05 22:54:37 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -95,7 +95,7 @@ extern void ResetSystemCache(void);
extern void SystemCacheRelationFlushed(Oid relId);
extern void CatalogCacheIdInvalidate(int cacheId, Index hashIndex,
ItemPointer pointer);
-extern void RelationInvalidateCatalogCacheTuple(Relation relation,
+extern void PrepareToInvalidateCacheTuple(Relation relation,
HeapTuple tuple,
void (*function) (int, Index, ItemPointer));