postgresql/src/include/access/htup.h

445 lines
13 KiB
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* htup.h
* POSTGRES heap tuple definitions.
*
*
2002-06-20 22:29:54 +02:00
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: htup.h,v 1.58 2002/08/25 17:20:01 tgl Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef HTUP_H
#define HTUP_H
#include "storage/bufpage.h"
#include "storage/relfilenode.h"
#include "access/transam.h"
/*
* MaxTupleAttributeNumber limits the number of (user) columns in a tuple.
* The key limit on this value is that the size of the fixed overhead for
* a tuple, plus the size of the null-values bitmap (at 1 bit per column),
* plus MAXALIGN alignment, must fit into t_hoff which is uint8. On most
* machines the upper limit without making t_hoff wider would be a little
* over 1700. We use round numbers here and for MaxHeapAttributeNumber
* so that alterations in HeapTupleHeaderData layout won't change the
* supported max number of columns.
*/
#define MaxTupleAttributeNumber 1664 /* 8 * 208 */
/*----------
* MaxHeapAttributeNumber limits the number of (user) columns in a table.
* This should be somewhat less than MaxTupleAttributeNumber. It must be
* at least one less, else we will fail to do UPDATEs on a maximal-width
* table (because UPDATE has to form working tuples that include CTID).
* In practice we want some additional daylight so that we can gracefully
* support operations that add hidden "resjunk" columns, for example
* SELECT * FROM wide_table ORDER BY foo, bar, baz.
* In any case, depending on column data types you will likely be running
* into the disk-block-based limit on overall tuple size if you have more
* than a thousand or so columns. TOAST won't help.
*----------
*/
#define MaxHeapAttributeNumber 1600 /* 8 * 200 */
/*
* On-disk heap tuple header. Currently this is also used as the header
* format for tuples formed in memory, although in principle they could
* be different.
2001-03-22 05:01:46 +01:00
*
2001-02-21 20:07:04 +01:00
* To avoid wasting space, the attributes should be layed out in such a
* way to reduce structure padding. Note that t_hoff is the offset to
* the start of the user data, and so must be a multiple of MAXALIGN.
* Also note that we omit the nulls bitmap if t_infomask shows that there
* are no nulls in the tuple.
*/
/*
** We store five "virtual" fields Xmin, Cmin, Xmax, Cmax, and Xvac
** in three physical fields t_xmin, t_cid, t_xmax:
** CommandId Cmin; insert CID stamp
** CommandId Cmax; delete CommandId stamp
** TransactionId Xmin; insert XID stamp
** TransactionId Xmax; delete XID stamp
** TransactionId Xvac; used by VACCUUM
**
** This assumes, that a CommandId can be stored in a TransactionId.
*/
1998-11-27 20:33:35 +01:00
typedef struct HeapTupleHeaderData
{
TransactionId t_xmin; /* Xmin -- 4 bytes each */
TransactionId t_cid; /* Cmin, Cmax, Xvac */
TransactionId t_xmax; /* Xmax, Cmax */
1998-11-27 20:33:35 +01:00
ItemPointerData t_ctid; /* current TID of this or newer tuple */
int16 t_natts; /* number of attributes */
uint16 t_infomask; /* various flag bits, see below */
uint8 t_hoff; /* sizeof header incl. bitmap, padding */
/* ^ - 23 bytes - ^ */
2000-06-02 12:20:27 +02:00
bits8 t_bits[1]; /* bitmap of NULLs -- VARIABLE LENGTH */
/* MORE DATA FOLLOWS AT END OF STRUCT */
1999-05-26 00:43:53 +02:00
} HeapTupleHeaderData;
1998-11-27 20:33:35 +01:00
typedef HeapTupleHeaderData *HeapTupleHeader;
/*
* information stored in t_infomask:
*/
#define HEAP_HASNULL 0x0001 /* has null attribute(s) */
#define HEAP_HASVARWIDTH 0x0002 /* has variable-width attribute(s) */
#define HEAP_HASEXTERNAL 0x0004 /* has external stored
* attribute(s) */
#define HEAP_HASCOMPRESSED 0x0008 /* has compressed stored
* attribute(s) */
#define HEAP_HASEXTENDED 0x000C /* the two above combined */
#define HEAP_XMIN_IS_XMAX 0x0040 /* created and deleted in the */
/* same transaction */
#define HEAP_XMAX_UNLOGGED 0x0080 /* to lock tuple for update */
/* without logging */
#define HEAP_XMIN_COMMITTED 0x0100 /* t_xmin committed */
#define HEAP_XMIN_INVALID 0x0200 /* t_xmin invalid/aborted */
#define HEAP_XMAX_COMMITTED 0x0400 /* t_xmax committed */
#define HEAP_XMAX_INVALID 0x0800 /* t_xmax invalid/aborted */
#define HEAP_MARKED_FOR_UPDATE 0x1000 /* marked for UPDATE */
#define HEAP_UPDATED 0x2000 /* this is UPDATEd version of row */
#define HEAP_MOVED_OFF 0x4000 /* moved to another place by
* vacuum */
#define HEAP_MOVED_IN 0x8000 /* moved from another place by
* vacuum */
#define HEAP_MOVED (HEAP_MOVED_OFF | HEAP_MOVED_IN)
#define HEAP_XACT_MASK 0xFFF0 /* visibility-related bits */
/* paranoid checking */
#ifdef DEBUG_TUPLE_ACCESS
#define HeapTupleHeaderExpectedLen(tup, withoid) \
MAXALIGN(offsetof(HeapTupleHeaderData, t_bits) + \
(((tup)->t_infomask & HEAP_HASNULL) \
? BITMAPLEN((tup)->t_natts) : 0) + \
((withoid) ? sizeof(Oid) : 0) \
)
#define AssertHeapTupleHeaderHoffIsValid(tup, withoid) \
AssertMacro((tup)->t_hoff == HeapTupleHeaderExpectedLen(tup, withoid))
#else
#define AssertHeapTupleHeaderHoffIsValid(tup, withoid) ((void)true)
#endif /* DEBUG_TUPLE_ACCESS */
/* HeapTupleHeader accessor macros */
#define HeapTupleHeaderGetOid(tup) \
( \
AssertHeapTupleHeaderHoffIsValid(tup, true), \
*((Oid *)((char *)(tup) + (tup)->t_hoff - sizeof(Oid))) \
)
#define HeapTupleHeaderSetOid(tup, oid) \
( \
AssertHeapTupleHeaderHoffIsValid(tup, true), \
*((Oid *)((char *)(tup) + (tup)->t_hoff - sizeof(Oid))) = (oid) \
)
#define HeapTupleHeaderGetXmin(tup) \
( \
(tup)->t_xmin \
)
#define HeapTupleHeaderGetXmax(tup) \
( \
((tup)->t_infomask & HEAP_XMIN_IS_XMAX) ? \
(tup)->t_xmin \
: \
(tup)->t_xmax \
)
/* no AssertMacro, because this is read as a system-defined attribute */
#define HeapTupleHeaderGetCmin(tup) \
( \
((tup)->t_infomask & HEAP_MOVED) ? \
FirstCommandId \
: \
( \
((tup)->t_infomask & (HEAP_XMIN_IS_XMAX | HEAP_XMAX_INVALID)) ? \
(CommandId) (tup)->t_cid \
: \
FirstCommandId \
) \
)
#define HeapTupleHeaderGetCmax(tup) \
( \
((tup)->t_infomask & HEAP_MOVED) ? \
FirstCommandId \
: \
( \
((tup)->t_infomask & (HEAP_XMIN_IS_XMAX | HEAP_XMAX_INVALID)) ? \
(CommandId) (tup)->t_xmax \
: \
(CommandId) (tup)->t_cid \
) \
)
#define HeapTupleHeaderGetXvac(tup) \
( \
AssertMacro((tup)->t_infomask & HEAP_MOVED), \
(tup)->t_cid \
)
#define HeapTupleHeaderSetXmin(tup, xid) \
( \
TransactionIdStore((xid), &(tup)->t_xmin) \
)
#define HeapTupleHeaderSetXminInvalid(tup) \
do { \
(tup)->t_infomask &= ~HEAP_XMIN_IS_XMAX; \
StoreInvalidTransactionId(&(tup)->t_xmin); \
} while (0)
#define HeapTupleHeaderSetXmax(tup, xid) \
do { \
if (TransactionIdEquals((tup)->t_xmin, (xid))) \
(tup)->t_infomask |= HEAP_XMIN_IS_XMAX; \
else \
{ \
(tup)->t_infomask &= ~HEAP_XMIN_IS_XMAX; \
TransactionIdStore((xid), &(tup)->t_xmax); \
} \
} while (0)
#define HeapTupleHeaderSetXmaxInvalid(tup) \
do { \
(tup)->t_infomask &= ~HEAP_XMIN_IS_XMAX; \
StoreInvalidTransactionId(&(tup)->t_xmax); \
} while (0)
#define HeapTupleHeaderSetCmin(tup, cid) \
do { \
Assert(!((tup)->t_infomask & HEAP_MOVED)); \
TransactionIdStore((TransactionId) (cid), &(tup)->t_cid); \
} while (0)
#define HeapTupleHeaderSetCmax(tup, cid) \
do { \
Assert(!((tup)->t_infomask & HEAP_MOVED)); \
if ((tup)->t_infomask & HEAP_XMIN_IS_XMAX) \
TransactionIdStore((TransactionId) (cid), &(tup)->t_xmax); \
else \
TransactionIdStore((TransactionId) (cid), &(tup)->t_cid); \
} while (0)
#define HeapTupleHeaderSetXvac(tup, xid) \
do { \
Assert((tup)->t_infomask & HEAP_MOVED); \
TransactionIdStore((xid), &(tup)->t_cid); \
} while (0)
2000-06-02 12:20:27 +02:00
/*
* XLOG allows to store some information in high 4 bits of log
* record xl_info field
*/
2001-03-22 05:01:46 +01:00
#define XLOG_HEAP_INSERT 0x00
#define XLOG_HEAP_DELETE 0x10
#define XLOG_HEAP_UPDATE 0x20
#define XLOG_HEAP_MOVE 0x30
#define XLOG_HEAP_CLEAN 0x40
#define XLOG_HEAP_OPMASK 0x70
/*
* When we insert 1st item on new page in INSERT/UPDATE
* we can (and we do) restore entire page in redo
*/
2001-03-22 05:01:46 +01:00
#define XLOG_HEAP_INIT_PAGE 0x80
2000-06-02 12:20:27 +02:00
/*
* All what we need to find changed tuple (14 bytes)
*
* NB: on most machines, sizeof(xl_heaptid) will include some trailing pad
* bytes for alignment. We don't want to store the pad space in the XLOG,
* so use SizeOfHeapTid for space calculations. Similar comments apply for
* the other xl_FOO structs.
2000-06-02 12:20:27 +02:00
*/
typedef struct xl_heaptid
{
2001-03-22 05:01:46 +01:00
RelFileNode node;
ItemPointerData tid; /* changed tuple id */
2000-06-02 12:20:27 +02:00
} xl_heaptid;
#define SizeOfHeapTid (offsetof(xl_heaptid, tid) + SizeOfIptrData)
/* This is what we need to know about delete */
2000-06-02 12:20:27 +02:00
typedef struct xl_heap_delete
{
2001-03-22 05:01:46 +01:00
xl_heaptid target; /* deleted tuple id */
2000-06-02 12:20:27 +02:00
} xl_heap_delete;
#define SizeOfHeapDelete (offsetof(xl_heap_delete, target) + SizeOfHeapTid)
2000-07-04 03:49:44 +02:00
typedef struct xl_heap_header
2000-06-02 12:20:27 +02:00
{
2001-03-22 05:01:46 +01:00
Oid t_oid;
int16 t_natts;
uint8 t_hoff;
uint8 mask; /* low 8 bits of t_infomask */
} xl_heap_header;
#define SizeOfHeapHeader (offsetof(xl_heap_header, mask) + sizeof(uint8))
/* This is what we need to know about insert */
typedef struct xl_heap_insert
{
2001-03-22 05:01:46 +01:00
xl_heaptid target; /* inserted tuple id */
/* xl_heap_header & TUPLE DATA FOLLOWS AT END OF STRUCT */
2000-06-02 12:20:27 +02:00
} xl_heap_insert;
#define SizeOfHeapInsert (offsetof(xl_heap_insert, target) + SizeOfHeapTid)
2000-07-04 03:49:44 +02:00
/* This is what we need to know about update|move */
2000-06-02 12:20:27 +02:00
typedef struct xl_heap_update
{
2001-03-22 05:01:46 +01:00
xl_heaptid target; /* deleted tuple id */
ItemPointerData newtid; /* new inserted tuple id */
/* NEW TUPLE xl_heap_header (PLUS xmax & xmin IF MOVE OP) */
/* and TUPLE DATA FOLLOWS AT END OF STRUCT */
2000-06-02 12:20:27 +02:00
} xl_heap_update;
#define SizeOfHeapUpdate (offsetof(xl_heap_update, newtid) + SizeOfIptrData)
/* This is what we need to know about page cleanup */
typedef struct xl_heap_clean
{
2001-03-22 05:01:46 +01:00
RelFileNode node;
BlockNumber block;
/* UNUSED OFFSET NUMBERS FOLLOW AT THE END */
} xl_heap_clean;
2001-03-22 05:01:46 +01:00
#define SizeOfHeapClean (offsetof(xl_heap_clean, block) + sizeof(BlockNumber))
2000-07-04 03:49:44 +02:00
/*
* MaxTupleSize is the maximum allowed size of a tuple, including header and
2001-03-22 05:01:46 +01:00
* MAXALIGN alignment padding. Basically it's BLCKSZ minus the other stuff
* that has to be on a disk page. The "other stuff" includes access-method-
* dependent "special space", which we assume will be no more than
* MaxSpecialSpace bytes (currently, on heap pages it's actually zero).
*
* NOTE: we do not need to count an ItemId for the tuple because
* sizeof(PageHeaderData) includes the first ItemId on the page.
*/
#define MaxSpecialSpace 32
#define MaxTupleSize \
(BLCKSZ - MAXALIGN(sizeof(PageHeaderData) + MaxSpecialSpace))
/*
* MaxAttrSize is a somewhat arbitrary upper limit on the declared size of
* data fields of char(n) and similar types. It need not have anything
* directly to do with the *actual* upper limit of varlena values, which
* is currently 1Gb (see struct varattrib in postgres.h). I've set it
* at 10Mb which seems like a reasonable number --- tgl 8/6/00.
*/
#define MaxAttrSize (10 * 1024 * 1024)
/*
* Attribute numbers for the system-defined attributes
*/
#define SelfItemPointerAttributeNumber (-1)
#define ObjectIdAttributeNumber (-2)
#define MinTransactionIdAttributeNumber (-3)
#define MinCommandIdAttributeNumber (-4)
#define MaxTransactionIdAttributeNumber (-5)
#define MaxCommandIdAttributeNumber (-6)
2001-03-22 05:01:46 +01:00
#define TableOidAttributeNumber (-7)
#define FirstLowInvalidHeapAttributeNumber (-8)
1998-11-27 20:33:35 +01:00
/*
* HeapTupleData is an in-memory data structure that points to a tuple.
2001-02-21 20:07:04 +01:00
*
1998-11-27 20:33:35 +01:00
* This new HeapTuple for version >= 6.5 and this is why it was changed:
*
* 1. t_len moved off on-disk tuple data - ItemIdData is used to get len;
* 2. t_ctid above is not self tuple TID now - it may point to
1999-05-25 18:15:34 +02:00
* updated version of tuple (required by MVCC);
* 3. someday someone let tuple to cross block boundaries -
* he have to add something below...
*
* Change for 7.0:
* Up to now t_data could be NULL, the memory location directly following
2000-11-14 21:47:34 +01:00
* HeapTupleData, or pointing into a buffer. Now, it could also point to
* a separate allocation that was done in the t_datamcxt memory context.
1998-11-27 20:33:35 +01:00
*/
typedef struct HeapTupleData
{
2001-03-22 05:01:46 +01:00
uint32 t_len; /* length of *t_data */
ItemPointerData t_self; /* SelfItemPointer */
Oid t_tableOid; /* table the tuple came from */
MemoryContext t_datamcxt; /* memory context of allocation */
HeapTupleHeader t_data; /* -> tuple header and data */
1998-11-27 20:33:35 +01:00
} HeapTupleData;
1999-05-25 18:15:34 +02:00
1998-11-27 20:33:35 +01:00
typedef HeapTupleData *HeapTuple;
#define HEAPTUPLESIZE MAXALIGN(sizeof(HeapTupleData))
1999-05-25 18:15:34 +02:00
/* ----------------
* support macros
* ----------------
*/
1998-11-27 20:33:35 +01:00
#define GETSTRUCT(TUP) (((char *)((HeapTuple)(TUP))->t_data) + \
((HeapTuple)(TUP))->t_data->t_hoff)
/*
* BITMAPLEN(NATTS) -
* Computes size of null bitmap given number of data columns.
*/
#define BITMAPLEN(NATTS) (((int)(NATTS) + 7) / 8)
/*
* HeapTupleIsValid
* True iff the heap tuple is valid.
*/
#define HeapTupleIsValid(tuple) PointerIsValid(tuple)
#define HeapTupleNoNulls(tuple) \
1998-11-27 20:33:35 +01:00
(!(((HeapTuple) (tuple))->t_data->t_infomask & HEAP_HASNULL))
#define HeapTupleAllFixed(tuple) \
(!(((HeapTuple) (tuple))->t_data->t_infomask & HEAP_HASVARWIDTH))
#define HeapTupleHasExternal(tuple) \
((((HeapTuple)(tuple))->t_data->t_infomask & HEAP_HASEXTERNAL) != 0)
#define HeapTupleHasCompressed(tuple) \
((((HeapTuple)(tuple))->t_data->t_infomask & HEAP_HASCOMPRESSED) != 0)
#define HeapTupleHasExtended(tuple) \
((((HeapTuple)(tuple))->t_data->t_infomask & HEAP_HASEXTENDED) != 0)
#define HeapTupleGetOid(tuple) \
HeapTupleHeaderGetOid(((HeapTuple)(tuple))->t_data)
#define HeapTupleSetOid(tuple, oid) \
HeapTupleHeaderSetOid(((HeapTuple)(tuple))->t_data, (oid))
#endif /* HTUP_H */