mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-12 09:27:04 +08:00
inval.c thought it could safely use the catcache to look up the OIDs of system relations. Not good, considering that inval.c could be called during catcache loading, if a shared-inval message arrives. Rip out the lookup logic and instead use the known OIDs from pg_class.h.
50 lines
1.3 KiB
C
50 lines
1.3 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* relcache.h
|
|
* Relation descriptor cache definitions.
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: relcache.h,v 1.16 1999/11/21 01:58:20 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef RELCACHE_H
|
|
#define RELCACHE_H
|
|
|
|
#include "utils/rel.h"
|
|
|
|
/*
|
|
* relation lookup routines
|
|
*/
|
|
extern Relation RelationIdCacheGetRelation(Oid relationId);
|
|
extern Relation RelationIdGetRelation(Oid relationId);
|
|
extern Relation RelationNameGetRelation(char *relationName);
|
|
|
|
extern void RelationClose(Relation relation);
|
|
extern void RelationForgetRelation(Oid rid);
|
|
|
|
/*
|
|
* Routines for flushing/rebuilding relcache entries in various scenarios
|
|
*/
|
|
extern void RelationRebuildRelation(Relation relation);
|
|
|
|
extern void RelationIdInvalidateRelationCacheByRelationId(Oid relationId);
|
|
|
|
extern void RelationCacheInvalidate(bool onlyFlushReferenceCountZero);
|
|
|
|
extern void RelationRegisterRelation(Relation relation);
|
|
extern void RelationPurgeLocalRelation(bool xactComitted);
|
|
extern void RelationInitialize(void);
|
|
|
|
extern void RelationCacheAbort(void);
|
|
|
|
/*
|
|
* both vacuum.c and relcache.c need to know the name of the relcache init file
|
|
*/
|
|
|
|
#define RELCACHE_INIT_FILENAME "pg_internal.init"
|
|
|
|
#endif /* RELCACHE_H */
|