fix deadlock

This commit is contained in:
yaoxin
2024-07-26 15:10:15 +08:00
parent fab43c996a
commit a50aa3fc6f

View File

@ -1324,8 +1324,6 @@ HeapTuple UHeapCopyHeapTuple(TupleTableSlot *slot)
if (slot->tts_tuple != NULL) {
tuple->t_self = ((UHeapTuple)slot->tts_tuple)->ctid;
tuple->t_tableOid = ((UHeapTuple)slot->tts_tuple)->table_oid;
tuple->t_xid_base = ((UHeapTuple)slot->tts_tuple)->t_xid_base;
tuple->t_data->t_choice.t_heap.t_xmin = ((UHeapTuple)slot->tts_tuple)->disk_tuple->xid;
}
return tuple;