⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 relcache.h

📁 关系型数据库 Postgresql 6.5.2
💻 H
字号:
/*------------------------------------------------------------------------- * * relcache.h *	  Relation descriptor cache definitions. * * * Copyright (c) 1994, Regents of the University of California * * $Id: relcache.h,v 1.12.2.1 1999/07/30 17:07:23 scrappy 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 */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -