diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-08-09 03:13:31 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-08-09 03:13:31 +0000 |
commit | 5af4b04f31a27ed60fe360e70acf67d208f883b3 (patch) | |
tree | 78d05fe02d63a0db3ce636ad13a2a655829a5372 /src/include/utils/syscache.h | |
parent | e9054829a2fcc6a34e12ca5be0195117602d9f13 (diff) | |
download | postgresql-5af4b04f31a27ed60fe360e70acf67d208f883b3.tar.gz postgresql-5af4b04f31a27ed60fe360e70acf67d208f883b3.zip |
Move get_attdisbursion to lsyscache. Clean up get_typdefault.
Diffstat (limited to 'src/include/utils/syscache.h')
-rw-r--r-- | src/include/utils/syscache.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/utils/syscache.h b/src/include/utils/syscache.h index 313f543e45e..b2850a8a6b0 100644 --- a/src/include/utils/syscache.h +++ b/src/include/utils/syscache.h @@ -3,10 +3,12 @@ * syscache.h * System catalog cache definitions. * + * See also lsyscache.h, which provides convenience routines for + * common cache-lookup operations. * * Copyright (c) 1994, Regents of the University of California * - * $Id: syscache.h,v 1.17 1999/07/20 17:14:08 momjian Exp $ + * $Id: syscache.h,v 1.18 1999/08/09 03:13:28 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -87,6 +89,5 @@ extern int32 SearchSysCacheStruct(int cacheId, char *returnStruct, extern void *SearchSysCacheGetAttribute(int cacheId, AttrNumber attributeNumber, Datum key1, Datum key2, Datum key3, Datum key4); -extern void *TypeDefaultRetrieve(Oid typId); #endif /* SYSCACHE_H */ |