mirror of
https://github.com/postgres/postgres.git
synced 2026-02-17 01:31:07 -05:00
to save a little bit of backend startup time. This way, the first backend started after a VACUUM will rebuild the init file with up-to-date statistics for the critical system indexes.
43 lines
1.2 KiB
C
43 lines
1.2 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* relcache.h
|
|
* Relation descriptor cache definitions.
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: relcache.h,v 1.12 1999/05/01 19:09:43 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);
|
|
extern void RelationIdInvalidateRelationCacheByRelationId(Oid relationId);
|
|
|
|
extern void RelationIdInvalidateRelationCacheByAccessMethodId(Oid accessMethodId);
|
|
|
|
extern void RelationCacheInvalidate(bool onlyFlushReferenceCountZero);
|
|
|
|
extern void RelationRegisterRelation(Relation relation);
|
|
extern void RelationPurgeLocalRelation(bool xactComitted);
|
|
extern void RelationInitialize(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 */
|