diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-11-20 19:49:08 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-11-20 19:49:08 +0000 |
commit | dd218ae7b00ccb4576e0048fc85665c8ae6bcf93 (patch) | |
tree | 2e4687adfd16506d6ba5f988b730eddfbef7ab94 /src/backend/executor/nodeHash.c | |
parent | 40314f2dac2ecb2974d03c064917a70de74c63d5 (diff) | |
download | postgresql-dd218ae7b00ccb4576e0048fc85665c8ae6bcf93.tar.gz postgresql-dd218ae7b00ccb4576e0048fc85665c8ae6bcf93.zip |
Remove the t_datamcxt field of HeapTupleData. This was introduced for
the convenience of tuptoaster.c and is no longer needed, so may as well
get rid of some small amount of overhead.
Diffstat (limited to 'src/backend/executor/nodeHash.c')
-rw-r--r-- | src/backend/executor/nodeHash.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/executor/nodeHash.c b/src/backend/executor/nodeHash.c index 8c51e785b28..06978d1f984 100644 --- a/src/backend/executor/nodeHash.c +++ b/src/backend/executor/nodeHash.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/executor/nodeHash.c,v 1.96 2005/10/15 02:49:17 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/executor/nodeHash.c,v 1.97 2005/11/20 19:49:07 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -621,7 +621,6 @@ ExecHashTableInsert(HashJoinTable hashtable, memcpy((char *) &hashTuple->htup, (char *) tuple, sizeof(hashTuple->htup)); - hashTuple->htup.t_datamcxt = hashtable->batchCxt; hashTuple->htup.t_data = (HeapTupleHeader) (((char *) hashTuple) + MAXALIGN(sizeof(HashJoinTupleData))); memcpy((char *) hashTuple->htup.t_data, |