Remove unused PruneState member rel
PruneState->rel is no longer being used, so just remove it. Author: Melanie Plageman <melanieplageman@gmail.com> Discussion: https://www.postgresql.org/message-id/20240320013602.6sypr4cx6sefpemg@liskov
This commit is contained in:
parent
c33084205a
commit
c9c260decd
@ -29,8 +29,6 @@
|
|||||||
/* Working data for heap_page_prune and subroutines */
|
/* Working data for heap_page_prune and subroutines */
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
Relation rel;
|
|
||||||
|
|
||||||
/* tuple visibility test, initialized for the relation */
|
/* tuple visibility test, initialized for the relation */
|
||||||
GlobalVisState *vistest;
|
GlobalVisState *vistest;
|
||||||
/* whether or not dead items can be set LP_UNUSED during pruning */
|
/* whether or not dead items can be set LP_UNUSED during pruning */
|
||||||
@ -235,7 +233,6 @@ heap_page_prune(Relation relation, Buffer buffer,
|
|||||||
* initialize the rest of our working state.
|
* initialize the rest of our working state.
|
||||||
*/
|
*/
|
||||||
prstate.new_prune_xid = InvalidTransactionId;
|
prstate.new_prune_xid = InvalidTransactionId;
|
||||||
prstate.rel = relation;
|
|
||||||
prstate.vistest = vistest;
|
prstate.vistest = vistest;
|
||||||
prstate.mark_unused_now = mark_unused_now;
|
prstate.mark_unused_now = mark_unused_now;
|
||||||
prstate.snapshotConflictHorizon = InvalidTransactionId;
|
prstate.snapshotConflictHorizon = InvalidTransactionId;
|
||||||
@ -250,7 +247,7 @@ heap_page_prune(Relation relation, Buffer buffer,
|
|||||||
presult->nnewlpdead = 0;
|
presult->nnewlpdead = 0;
|
||||||
|
|
||||||
maxoff = PageGetMaxOffsetNumber(page);
|
maxoff = PageGetMaxOffsetNumber(page);
|
||||||
tup.t_tableOid = RelationGetRelid(prstate.rel);
|
tup.t_tableOid = RelationGetRelid(relation);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Determine HTSV for all tuples.
|
* Determine HTSV for all tuples.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user