Commit 6ef0219c authored by Hiroshi Inoue's avatar Hiroshi Inoue

Resolve complie error(was my fault).

parent a8824ff2
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * 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 * INTERFACE ROUTINES
...@@ -2427,8 +2427,7 @@ newsame:; ...@@ -2427,8 +2427,7 @@ newsame:;
if (move) if (move)
{ {
htup->t_xmin = (TransactionId) xlrec->target.cid; htup->t_xmin = (TransactionId) xlrec->target.cid;
TransactionIdStore(record->xl_xid, (TransactionId *) &(h TransactionIdStore(record->xl_xid, (TransactionId *) &(htup->t_cmin));
tup->t_cmin));
memcpy(&(htup->t_xmax), memcpy(&(htup->t_xmax),
(char*)xlrec + SizeOfHeapUpdate, sizeof(TransactionId)); (char*)xlrec + SizeOfHeapUpdate, sizeof(TransactionId));
htup->t_infomask = xlrec->mask; htup->t_infomask = xlrec->mask;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment