diff options
Diffstat (limited to 'src/include/utils/syscache.h')
-rw-r--r-- | src/include/utils/syscache.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/include/utils/syscache.h b/src/include/utils/syscache.h index d08dfadda49..1d9ddd9acfd 100644 --- a/src/include/utils/syscache.h +++ b/src/include/utils/syscache.h @@ -9,7 +9,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: syscache.h,v 1.41 2002/03/29 19:06:26 tgl Exp $ + * $Id: syscache.h,v 1.42 2002/04/06 06:59:25 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -79,4 +79,9 @@ extern Oid GetSysCacheOid(int cacheId, extern Datum SysCacheGetAttr(int cacheId, HeapTuple tup, AttrNumber attributeNumber, bool *isNull); +/* list-search interface. Users of this must import catcache.h too */ +extern struct catclist *SearchSysCacheList(int cacheId, int nkeys, + Datum key1, Datum key2, Datum key3, Datum key4); +#define ReleaseSysCacheList(x) ReleaseCatCacheList(x) + #endif /* SYSCACHE_H */ |