aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi Inoue <inoue@tpf.co.jp>2000-12-11 09:14:03 +0000
committerHiroshi Inoue <inoue@tpf.co.jp>2000-12-11 09:14:03 +0000
commit6ef0219c3447e8c194b4474e3eea8a7aac36ebb4 (patch)
treed089c99c6fd21200c3a407c3131f50889d3c4dd7
parenta8824ff257a72314f3b99a3ff548988bb65a30e2 (diff)
downloadpostgresql-6ef0219c3447e8c194b4474e3eea8a7aac36ebb4.tar.gz
postgresql-6ef0219c3447e8c194b4474e3eea8a7aac36ebb4.zip
Resolve complie error(was my fault).
-rw-r--r--src/backend/access/heap/heapam.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c
index b928c1b688f..48c75f5d17f 100644
--- a/src/backend/access/heap/heapam.c
+++ b/src/backend/access/heap/heapam.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.100 2000/12/11 05:25:23 inoue Exp $
+ * $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.101 2000/12/11 09:14:03 inoue Exp $
*
*
* INTERFACE ROUTINES
@@ -2427,8 +2427,7 @@ newsame:;
if (move)
{
htup->t_xmin = (TransactionId) xlrec->target.cid;
- TransactionIdStore(record->xl_xid, (TransactionId *) &(h
-tup->t_cmin));
+ TransactionIdStore(record->xl_xid, (TransactionId *) &(htup->t_cmin));
memcpy(&(htup->t_xmax),
(char*)xlrec + SizeOfHeapUpdate, sizeof(TransactionId));
htup->t_infomask = xlrec->mask;