pgsql: Remove LVPagePruneState.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Remove LVPagePruneState.
Date: 2024-01-18 20:17:59
Message-ID: E1rQYpr-002318-Vo@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove LVPagePruneState.

Commit cb970240f13df2b63f0410f81f452179a2b78d6f moved some code from
lazy_scan_heap() to lazy_scan_prune(), and now some things that used to
need to be passed back and forth are completely local to lazy_scan_prune().
Hence, this struct is mostly obsolete. The only thing that still
needs to be passed back to the caller is has_lpdead_items, and that's
also passed back by lazy_scan_noprune(), so do it the same way in both
cases.

Melanie Plageman, reviewed and slightly revised by me.

Discussion: http://postgr.es/m/CAAKRu_aM=OL85AOr-80wBsCr=vLVzhnaavqkVPRkFBtD0zsuLQ@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/e313a611370410f4efe4e816767759870b69dfa6

Modified Files
--------------
src/backend/access/heap/vacuumlazy.c | 135 ++++++++++++++++++-----------------
src/tools/pgindent/typedefs.list | 1 -
2 files changed, 69 insertions(+), 67 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2024-01-18 21:11:32 pgsql: Fix plpgsql to allow new-style SQL CREATE FUNCTION as a SQL comm
Previous Message Robert Haas 2024-01-18 19:45:31 pgsql: Move VM update code from lazy_scan_heap() to lazy_scan_prune().