diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 2000-11-30 01:47:33 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 2000-11-30 01:47:33 +0000 |
commit | 741510521caea7e1ca12b4db0701bbc2db346a5f (patch) | |
tree | d26b28fc9215dd82b038f9c3d51925a6e7e65e1f /src/include/access/htup.h | |
parent | 680b7357ce850c28d06997be793aee18f72434ba (diff) | |
download | postgresql-741510521caea7e1ca12b4db0701bbc2db346a5f.tar.gz postgresql-741510521caea7e1ca12b4db0701bbc2db346a5f.zip |
XLOG stuff for sequences.
CommitDelay in guc.c
Diffstat (limited to 'src/include/access/htup.h')
-rw-r--r-- | src/include/access/htup.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/access/htup.h b/src/include/access/htup.h index 177176e434a..6484abf36d8 100644 --- a/src/include/access/htup.h +++ b/src/include/access/htup.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: htup.h,v 1.39 2000/11/14 21:04:32 tgl Exp $ + * $Id: htup.h,v 1.40 2000/11/30 01:47:32 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -186,9 +186,9 @@ extern long heap_sysoffset[]; */ typedef struct HeapTupleData { - uint32 t_len; /* length of *t_data */ + uint32 t_len; /* length of *t_data */ ItemPointerData t_self; /* SelfItemPointer */ - Oid t_tableOid; /* table the tuple came from */ + Oid t_tableOid; /* table the tuple came from */ MemoryContext t_datamcxt; /* mcxt in which allocated */ HeapTupleHeader t_data; /* -> tuple header and data */ } HeapTupleData; |