1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-21 05:21:08 +03:00

Move get_attdisbursion to lsyscache. Clean up get_typdefault.

This commit is contained in:
Tom Lane
1999-08-09 03:13:31 +00:00
parent e9054829a2
commit 5af4b04f31
5 changed files with 187 additions and 131 deletions

View File

@@ -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 */