mirror of
https://github.com/postgres/postgres.git
synced 2025-12-21 05:21:08 +03:00
OK, folks, here is the pgindent output.
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: syscache.h,v 1.11 1998/08/19 02:04:09 momjian Exp $
|
||||
* $Id: syscache.h,v 1.12 1998/09/01 04:39:34 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -69,7 +69,8 @@
|
||||
*/
|
||||
struct cachedesc
|
||||
{
|
||||
char *name; /* this is Name so that we can initialize it */
|
||||
char *name; /* this is Name so that we can initialize
|
||||
* it */
|
||||
int nkeys;
|
||||
int key[4];
|
||||
int size; /* sizeof(appropriate struct) */
|
||||
@@ -80,19 +81,15 @@ struct cachedesc
|
||||
|
||||
extern void zerocaches(void);
|
||||
extern void InitCatalogCache(void);
|
||||
extern HeapTuple
|
||||
SearchSysCacheTupleCopy(int cacheId,
|
||||
extern HeapTuple SearchSysCacheTupleCopy(int cacheId,
|
||||
Datum key1, Datum key2, Datum key3, Datum key4);
|
||||
extern HeapTuple SearchSysCacheTuple(int cacheId,
|
||||
Datum key1, Datum key2, Datum key3, Datum key4);
|
||||
extern HeapTuple
|
||||
SearchSysCacheTuple(int cacheId,
|
||||
Datum key1, Datum key2, Datum key3, Datum key4);
|
||||
extern int32
|
||||
SearchSysCacheStruct(int cacheId, char *returnStruct,
|
||||
extern int32 SearchSysCacheStruct(int cacheId, char *returnStruct,
|
||||
Datum key1, Datum key2, Datum key3, Datum key4);
|
||||
extern void *
|
||||
SearchSysCacheGetAttribute(int cacheId,
|
||||
extern void *SearchSysCacheGetAttribute(int cacheId,
|
||||
AttrNumber attributeNumber,
|
||||
Datum key1, Datum key2, Datum key3, Datum key4);
|
||||
Datum key1, Datum key2, Datum key3, Datum key4);
|
||||
extern void *TypeDefaultRetrieve(Oid typId);
|
||||
|
||||
#endif /* SYSCACHE_H */
|
||||
#endif /* SYSCACHE_H */
|
||||
|
||||
Reference in New Issue
Block a user