diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-11-14 21:04:32 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-11-14 21:04:32 +0000 |
commit | 21e1e6643c3f79c31bd3db3f4e396e6cd646ab32 (patch) | |
tree | 4283d598e1197e474c0eb31aad215d084e62abb7 /src/include/access/htup.h | |
parent | b0d243e420f97c17234f291827301ecfb75be732 (diff) | |
download | postgresql-21e1e6643c3f79c31bd3db3f4e396e6cd646ab32.tar.gz postgresql-21e1e6643c3f79c31bd3db3f4e396e6cd646ab32.zip |
Minor cleanup of tableOid-related coding.
Diffstat (limited to 'src/include/access/htup.h')
-rw-r--r-- | src/include/access/htup.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/access/htup.h b/src/include/access/htup.h index 6b290e9753c..177176e434a 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.38 2000/11/14 20:47:34 tgl Exp $ + * $Id: htup.h,v 1.39 2000/11/14 21:04:32 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -188,7 +188,7 @@ typedef struct HeapTupleData { uint32 t_len; /* length of *t_data */ ItemPointerData t_self; /* SelfItemPointer */ - Oid 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; |