mirror of
https://github.com/postgres/postgres.git
synced 2025-07-07 00:36:50 +03:00
Remove duplicate code in heap_prune_chain()
No need to set tuple tableOid twice Jim Nasby
This commit is contained in:
@ -372,7 +372,6 @@ heap_prune_chain(Relation relation, Buffer buffer, OffsetNumber rootoffnum,
|
|||||||
|
|
||||||
tup.t_data = htup;
|
tup.t_data = htup;
|
||||||
tup.t_len = ItemIdGetLength(rootlp);
|
tup.t_len = ItemIdGetLength(rootlp);
|
||||||
tup.t_tableOid = RelationGetRelid(relation);
|
|
||||||
ItemPointerSet(&(tup.t_self), BufferGetBlockNumber(buffer), rootoffnum);
|
ItemPointerSet(&(tup.t_self), BufferGetBlockNumber(buffer), rootoffnum);
|
||||||
|
|
||||||
if (HeapTupleHeaderIsHeapOnly(htup))
|
if (HeapTupleHeaderIsHeapOnly(htup))
|
||||||
|
Reference in New Issue
Block a user