mirror of
https://github.com/postgres/postgres.git
synced 2026-02-13 07:43:11 -05:00
default, but OIDS are removed from many system catalogs that don't need them. Some interesting side effects: TOAST pointers are 20 bytes not 32 now; pg_description has a three-column key instead of one. Bugs fixed in passing: BINARY cursors work again; pg_class.relhaspkey has some usefulness; pg_dump dumps comments on indexes, rules, and triggers in a valid order. initdb forced.
75 lines
2 KiB
C
75 lines
2 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* syscache.h
|
|
* System catalog cache definitions.
|
|
*
|
|
* See also lsyscache.h, which provides convenience routines for
|
|
* common cache-lookup operations.
|
|
*
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: syscache.h,v 1.32 2001/08/10 18:57:41 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef SYSCACHE_H
|
|
#define SYSCACHE_H
|
|
|
|
#include "access/htup.h"
|
|
|
|
/*
|
|
* Declarations for util/syscache.c.
|
|
*
|
|
* SysCache identifiers.
|
|
*
|
|
* The order of these must match the order
|
|
* they are entered into the structure cacheinfo[] in syscache.c.
|
|
* Keep them in alphabetical order.
|
|
*/
|
|
|
|
#define AGGNAME 0
|
|
#define AMNAME 1
|
|
#define AMOPOPID 2
|
|
#define AMOPSTRATEGY 3
|
|
#define ATTNAME 4
|
|
#define ATTNUM 5
|
|
#define CLADEFTYPE 6
|
|
#define CLANAME 7
|
|
#define GRONAME 8
|
|
#define GROSYSID 9
|
|
#define INDEXRELID 10
|
|
#define INHRELID 11
|
|
#define LANGNAME 12
|
|
#define LANGOID 13
|
|
#define OPERNAME 14
|
|
#define OPEROID 15
|
|
#define PROCNAME 16
|
|
#define PROCOID 17
|
|
#define RELNAME 18
|
|
#define RELOID 19
|
|
#define RULENAME 20
|
|
#define SHADOWNAME 21
|
|
#define SHADOWSYSID 22
|
|
#define STATRELATT 23
|
|
#define TYPENAME 24
|
|
#define TYPEOID 25
|
|
|
|
extern void InitCatalogCache(void);
|
|
|
|
extern HeapTuple SearchSysCache(int cacheId,
|
|
Datum key1, Datum key2, Datum key3, Datum key4);
|
|
extern void ReleaseSysCache(HeapTuple tuple);
|
|
|
|
/* convenience routines */
|
|
extern HeapTuple SearchSysCacheCopy(int cacheId,
|
|
Datum key1, Datum key2, Datum key3, Datum key4);
|
|
extern bool SearchSysCacheExists(int cacheId,
|
|
Datum key1, Datum key2, Datum key3, Datum key4);
|
|
extern Oid GetSysCacheOid(int cacheId,
|
|
Datum key1, Datum key2, Datum key3, Datum key4);
|
|
|
|
extern Datum SysCacheGetAttr(int cacheId, HeapTuple tup,
|
|
AttrNumber attributeNumber, bool *isNull);
|
|
|
|
#endif /* SYSCACHE_H */
|