rel.h 13.0 KB
Newer Older
1 2
/*-------------------------------------------------------------------------
 *
3
 * rel.h
4
 *	  POSTGRES relation descriptor (a/k/a relcache entry) definitions.
5 6
 *
 *
B
Bruce Momjian 已提交
7
 * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group
B
Add:  
Bruce Momjian 已提交
8
 * Portions Copyright (c) 1994, Regents of the University of California
9
 *
10
 * src/include/utils/rel.h
11 12 13
 *
 *-------------------------------------------------------------------------
 */
14
#ifndef REL_H
15 16
#define REL_H

17
#include "access/tupdesc.h"
B
Bruce Momjian 已提交
18 19
#include "catalog/pg_am.h"
#include "catalog/pg_class.h"
20
#include "catalog/pg_index.h"
21
#include "fmgr.h"
22
#include "nodes/bitmapset.h"
23
#include "rewrite/prs2lock.h"
24 25
#include "storage/block.h"
#include "storage/relfilenode.h"
26
#include "utils/relcache.h"
27
#include "utils/reltrigger.h"
28

29

30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
/*
 * LockRelId and LockInfo really belong to lmgr.h, but it's more convenient
 * to declare them here so we can have a LockInfoData field in a Relation.
 */

typedef struct LockRelId
{
	Oid			relId;			/* a relation identifier */
	Oid			dbId;			/* a database identifier */
} LockRelId;

typedef struct LockInfoData
{
	LockRelId	lockRelId;
} LockInfoData;

typedef LockInfoData *LockInfo;

48

49 50 51 52 53 54 55 56 57
/*
 * Cached lookup information for the index access method functions defined
 * by the pg_am row associated with an index relation.
 */
typedef struct RelationAmInfo
{
	FmgrInfo	aminsert;
	FmgrInfo	ambeginscan;
	FmgrInfo	amgettuple;
58
	FmgrInfo	amgetbitmap;
59 60 61 62 63
	FmgrInfo	amrescan;
	FmgrInfo	amendscan;
	FmgrInfo	ammarkpos;
	FmgrInfo	amrestrpos;
	FmgrInfo	ambuild;
R
Robert Haas 已提交
64
	FmgrInfo	ambuildempty;
65 66
	FmgrInfo	ambulkdelete;
	FmgrInfo	amvacuumcleanup;
67
	FmgrInfo	amcanreturn;
68
	FmgrInfo	amcostestimate;
69
	FmgrInfo	amoptions;
70 71 72
} RelationAmInfo;


73 74 75
/*
 * Here are the contents of a relation cache entry.
 */
76

77 78
typedef struct RelationData
{
79 80
	RelFileNode rd_node;		/* relation physical identifier */
	/* use "struct" here to avoid needing to include smgr.h: */
B
Bruce Momjian 已提交
81
	struct SMgrRelationData *rd_smgr;	/* cached file handle, or NULL */
82
	int			rd_refcnt;		/* reference count */
83
	BackendId	rd_backend;		/* owning backend id, if temporary relation */
84
	bool		rd_islocaltemp; /* rel is a temp rel of this session */
85
	bool		rd_isnailed;	/* rel is nailed in cache */
86
	bool		rd_isscannable; /* rel can be scanned */
87
	bool		rd_isvalid;		/* relcache entry is valid */
B
Bruce Momjian 已提交
88 89
	char		rd_indexvalid;	/* state of rd_indexlist: 0 = not valid, 1 =
								 * valid, 2 = temporarily forced */
B
Bruce Momjian 已提交
90

91
	/*
92
	 * rd_createSubid is the ID of the highest subtransaction the rel has
B
Bruce Momjian 已提交
93
	 * survived into; or zero if the rel was not created in the current top
94 95
	 * transaction.  This can be now be relied on, whereas previously it
	 * could be "forgotten" in earlier releases.
B
Bruce Momjian 已提交
96 97 98
	 * Likewise, rd_newRelfilenodeSubid is the ID of the highest
	 * subtransaction the relfilenode change has survived into, or zero if not
	 * changed in the current transaction (or we have forgotten changing it).
99 100 101 102 103 104 105 106 107
	 * rd_newRelfilenodeSubid can be forgotten when a relation has multiple
	 * new relfilenodes within a single transaction, with one of them occuring
	 * in a subsequently aborted subtransaction, e.g.
	 * 		BEGIN;
	 * 		TRUNCATE t;
	 * 		SAVEPOINT save;
	 * 		TRUNCATE t;
	 * 		ROLLBACK TO save;
	 * 		-- rd_newRelfilenode is now forgotten
108
	 */
109 110 111 112
	SubTransactionId rd_createSubid;	/* rel was created in current xact */
	SubTransactionId rd_newRelfilenodeSubid;	/* new relfilenode assigned in
												 * current xact */

113
	Form_pg_class rd_rel;		/* RELATION tuple */
114
	TupleDesc	rd_att;			/* tuple descriptor */
115
	Oid			rd_id;			/* relation's object id */
116
	List	   *rd_indexlist;	/* list of OIDs of indexes on relation */
117
	Bitmapset  *rd_indexattr;	/* identifies columns used in indexes */
118
	Bitmapset  *rd_keyattr;		/* cols that can be ref'd by foreign keys */
119
	Oid			rd_oidindex;	/* OID of unique index on OID, if any */
120
	LockInfoData rd_lockInfo;	/* lock mgr's info for locking relation */
121
	RuleLock   *rd_rules;		/* rewrite rules */
122
	MemoryContext rd_rulescxt;	/* private memory cxt for rd_rules, if any */
123
	TriggerDesc *trigdesc;		/* Trigger info, or NULL if rel has none */
124

125 126
	/*
	 * rd_options is set whenever rd_rel is loaded into the relcache entry.
B
Bruce Momjian 已提交
127 128
	 * Note that you can NOT look into rd_rel for this data.  NULL means "use
	 * defaults".
129 130 131
	 */
	bytea	   *rd_options;		/* parsed pg_class.reloptions */

132 133
	/* These are non-NULL only for an index relation: */
	Form_pg_index rd_index;		/* pg_index tuple describing this index */
134
	/* use "struct" here to avoid needing to include htup.h: */
B
Bruce Momjian 已提交
135
	struct HeapTupleData *rd_indextuple;		/* all of pg_index tuple */
136 137
	Form_pg_am	rd_am;			/* pg_am tuple for index's AM */

138 139 140
	/*
	 * index access support info (used only for an index relation)
	 *
141
	 * Note: only default support procs for each opclass are cached, namely
142 143 144
	 * those with lefttype and righttype equal to the opclass's opcintype. The
	 * arrays are indexed by support function number, which is a sufficient
	 * identifier given that restriction.
145 146 147 148
	 *
	 * Note: rd_amcache is available for index AMs to cache private data about
	 * an index.  This must be just a cache since it may get reset at any time
	 * (in particular, it will get reset by a relcache inval message for the
B
Bruce Momjian 已提交
149
	 * index).	If used, it must point to a single memory chunk palloc'd in
150 151
	 * rd_indexcxt.  A relcache reset will include freeing that chunk and
	 * setting rd_amcache = NULL.
152
	 */
153
	MemoryContext rd_indexcxt;	/* private memory cxt for this stuff */
154
	RelationAmInfo *rd_aminfo;	/* lookup info for funcs found in pg_am */
155 156
	Oid		   *rd_opfamily;	/* OIDs of op families for each index col */
	Oid		   *rd_opcintype;	/* OIDs of opclass declared input data types */
157
	RegProcedure *rd_support;	/* OIDs of support procedures */
B
Bruce Momjian 已提交
158
	FmgrInfo   *rd_supportinfo; /* lookup info for support procedures */
159
	int16	   *rd_indoption;	/* per-column AM-specific flags */
160 161
	List	   *rd_indexprs;	/* index expression trees, if any */
	List	   *rd_indpred;		/* index predicate tree, if any */
162 163 164
	Oid		   *rd_exclops;		/* OIDs of exclusion operators, if any */
	Oid		   *rd_exclprocs;	/* OIDs of exclusion ops' procs, if any */
	uint16	   *rd_exclstrats;	/* exclusion ops' strategy numbers, if any */
165
	void	   *rd_amcache;		/* available for use by index AM */
166
	Oid		   *rd_indcollation;	/* OIDs of index collations */
167

168 169 170 171 172 173 174 175 176 177 178
	/*
	 * foreign-table support
	 *
	 * rd_fdwroutine must point to a single memory chunk palloc'd in
	 * CacheMemoryContext.  It will be freed and reset to NULL on a relcache
	 * reset.
	 */

	/* use "struct" here to avoid needing to include fdwapi.h: */
	struct FdwRoutine *rd_fdwroutine;	/* cached function pointers, or NULL */

179 180 181 182 183 184
	/*
	 * Hack for CLUSTER, rewriting ALTER TABLE, etc: when writing a new
	 * version of a table, we need to make any toast pointers inserted into it
	 * have the existing toast table's OID, not the OID of the transient toast
	 * table.  If rd_toastoid isn't InvalidOid, it is the OID to place in
	 * toast pointers inserted into this rel.  (Note it's set on the new
185 186
	 * version of the main heap, not the toast table itself.)  This also
	 * causes toast_save_datum() to try to preserve toast value OIDs.
187 188 189
	 */
	Oid			rd_toastoid;	/* Real TOAST table's OID, or InvalidOid */

190
	/* use "struct" here to avoid needing to include pgstat.h: */
B
Bruce Momjian 已提交
191
	struct PgStat_TableStatus *pgstat_info;		/* statistics collection area */
192
} RelationData;
193

194 195 196 197 198 199 200 201
/*
 * StdRdOptions
 *		Standard contents of rd_options for heaps and generic indexes.
 *
 * RelationGetFillFactor() and RelationGetTargetPageFreeSpace() can only
 * be applied to relations that use this format or a superset for
 * private options data.
 */
202 203 204
 /* autovacuum-related reloptions. */
typedef struct AutoVacOpts
{
205 206 207 208 209 210 211 212 213 214
	bool		enabled;
	int			vacuum_threshold;
	int			analyze_threshold;
	int			vacuum_cost_delay;
	int			vacuum_cost_limit;
	int			freeze_min_age;
	int			freeze_max_age;
	int			freeze_table_age;
	float8		vacuum_scale_factor;
	float8		analyze_scale_factor;
215 216
} AutoVacOpts;

217 218
typedef struct StdRdOptions
{
219
	int32		vl_len_;		/* varlena header (do not touch directly!) */
B
Bruce Momjian 已提交
220
	int			fillfactor;		/* page fill factor in percent (0..100) */
221
	AutoVacOpts autovacuum;		/* autovacuum-related options */
222
	bool		security_barrier;		/* for views */
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
} StdRdOptions;

#define HEAP_MIN_FILLFACTOR			10
#define HEAP_DEFAULT_FILLFACTOR		100

/*
 * RelationGetFillFactor
 *		Returns the relation's fillfactor.  Note multiple eval of argument!
 */
#define RelationGetFillFactor(relation, defaultff) \
	((relation)->rd_options ? \
	 ((StdRdOptions *) (relation)->rd_options)->fillfactor : (defaultff))

/*
 * RelationGetTargetPageUsage
 *		Returns the relation's desired space usage per page in bytes.
 */
#define RelationGetTargetPageUsage(relation, defaultff) \
	(BLCKSZ * RelationGetFillFactor(relation, defaultff) / 100)

/*
 * RelationGetTargetPageFreeSpace
 *		Returns the relation's desired freespace per page in bytes.
 */
#define RelationGetTargetPageFreeSpace(relation, defaultff) \
	(BLCKSZ * (100 - RelationGetFillFactor(relation, defaultff)) / 100)

250 251 252 253 254 255 256 257
/*
 * RelationIsSecurityView
 *		Returns whether the relation is security view, or not
 */
#define RelationIsSecurityView(relation)	\
	((relation)->rd_options ?				\
	 ((StdRdOptions *) (relation)->rd_options)->security_barrier : false)

258
/*
B
Bruce Momjian 已提交
259
 * RelationIsValid
260
 *		True iff relation descriptor is valid.
261
 */
262
#define RelationIsValid(relation) PointerIsValid(relation)
263

264 265
#define InvalidRelation ((Relation) NULL)

266
/*
B
Bruce Momjian 已提交
267
 * RelationHasReferenceCountZero
268
 *		True iff relation reference count is zero.
269 270
 *
 * Note:
271
 *		Assumes relation descriptor is valid.
272 273
 */
#define RelationHasReferenceCountZero(relation) \
274
		((bool)((relation)->rd_refcnt == 0))
275 276

/*
B
Bruce Momjian 已提交
277
 * RelationGetForm
278
 *		Returns pg_class tuple for a relation.
279 280
 *
 * Note:
281
 *		Assumes relation descriptor is valid.
282
 */
283
#define RelationGetForm(relation) ((relation)->rd_rel)
284

285
/*
B
Bruce Momjian 已提交
286
 * RelationGetRelid
N
Neil Conway 已提交
287
 *		Returns the OID of the relation
288
 */
289
#define RelationGetRelid(relation) ((relation)->rd_id)
290 291

/*
292
 * RelationGetNumberOfAttributes
N
Neil Conway 已提交
293
 *		Returns the number of attributes in a relation.
294 295 296 297
 */
#define RelationGetNumberOfAttributes(relation) ((relation)->rd_rel->relnatts)

/*
B
Bruce Momjian 已提交
298
 * RelationGetDescr
299
 *		Returns tuple descriptor for a relation.
300
 */
301
#define RelationGetDescr(relation) ((relation)->rd_att)
302

303 304
/*
 * RelationGetRelationName
N
Neil Conway 已提交
305
 *		Returns the rel's name.
306
 *
307
 * Note that the name is only unique within the containing namespace.
308 309
 */
#define RelationGetRelationName(relation) \
310
	(NameStr((relation)->rd_rel->relname))
311

312 313
/*
 * RelationGetNamespace
N
Neil Conway 已提交
314
 *		Returns the rel's namespace OID.
315 316 317 318
 */
#define RelationGetNamespace(relation) \
	((relation)->rd_rel->relnamespace)

319 320 321 322 323 324 325 326 327 328
/*
 * RelationIsMapped
 *		True if the relation uses the relfilenode map.
 *
 * NB: this is only meaningful for relkinds that have storage, else it
 * will misleadingly say "true".
 */
#define RelationIsMapped(relation) \
	((relation)->rd_rel->relfilenode == InvalidOid)

329 330 331 332 333 334 335
/*
 * RelationOpenSmgr
 *		Open the relation at the smgr level, if not already done.
 */
#define RelationOpenSmgr(relation) \
	do { \
		if ((relation)->rd_smgr == NULL) \
336
			smgrsetowner(&((relation)->rd_smgr), smgropen((relation)->rd_node, (relation)->rd_backend)); \
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
	} while (0)

/*
 * RelationCloseSmgr
 *		Close the relation at the smgr level, if not already done.
 *
 * Note: smgrclose should unhook from owner pointer, hence the Assert.
 */
#define RelationCloseSmgr(relation) \
	do { \
		if ((relation)->rd_smgr != NULL) \
		{ \
			smgrclose((relation)->rd_smgr); \
			Assert((relation)->rd_smgr == NULL); \
		} \
	} while (0)

354 355 356 357
/*
 * RelationGetTargetBlock
 *		Fetch relation's current insertion target block.
 *
B
Bruce Momjian 已提交
358
 * Returns InvalidBlockNumber if there is no current target block.	Note
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
 * that the target block status is discarded on any smgr-level invalidation.
 */
#define RelationGetTargetBlock(relation) \
	( (relation)->rd_smgr != NULL ? (relation)->rd_smgr->smgr_targblock : InvalidBlockNumber )

/*
 * RelationSetTargetBlock
 *		Set relation's current insertion target block.
 */
#define RelationSetTargetBlock(relation, targblock) \
	do { \
		RelationOpenSmgr(relation); \
		(relation)->rd_smgr->smgr_targblock = (targblock); \
	} while (0)

374 375 376 377 378 379 380 381 382 383 384 385 386 387
/*
 * RelationNeedsWAL
 *		True if relation needs WAL.
 */
#define RelationNeedsWAL(relation) \
	((relation)->rd_rel->relpersistence == RELPERSISTENCE_PERMANENT)

/*
 * RelationUsesLocalBuffers
 *		True if relation's pages are stored in local buffers.
 */
#define RelationUsesLocalBuffers(relation) \
	((relation)->rd_rel->relpersistence == RELPERSISTENCE_TEMP)

388 389 390
/*
 * RELATION_IS_LOCAL
 *		If a rel is either temp or newly created in the current transaction,
391 392
 *		it can be assumed to be accessible only to the current backend.
 *		This is typically used to decide that we can skip acquiring locks.
393 394 395 396
 *
 * Beware of multiple eval of argument
 */
#define RELATION_IS_LOCAL(relation) \
397
	((relation)->rd_islocaltemp || \
398
	 (relation)->rd_createSubid != InvalidSubTransactionId)
399

400 401 402 403 404 405 406
/*
 * RELATION_IS_OTHER_TEMP
 *		Test for a temporary relation that belongs to some other session.
 *
 * Beware of multiple eval of argument
 */
#define RELATION_IS_OTHER_TEMP(relation) \
407 408
	((relation)->rd_rel->relpersistence == RELPERSISTENCE_TEMP && \
	 !(relation)->rd_islocaltemp)
409

410 411 412 413
/* routines in utils/cache/relcache.c */
extern void RelationIncrementReferenceCount(Relation rel);
extern void RelationDecrementReferenceCount(Relation rel);

414
#endif   /* REL_H */