pgsql: Move heaprel struct field next to index rel field.

From: Peter Geoghegan <pg(at)bowt(dot)ie>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Move heaprel struct field next to index rel field.
Date: 2023-04-03 18:02:07
Message-ID: E1pjOVK-001C94-E1@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Move heaprel struct field next to index rel field.

Commit 61b313e4 added a heaprel struct member to IndexVacuumInfo, but
placed it last. Move the heaprel struct member next to the index struct
member to improve the code's readability.

Author: Peter Geoghegan <pg(at)bowt(dot)ie>
Discussion: https://postgr.es/m/CAH2-WznG=TV6S9d3VA=y0vBHbXwnLs9_LLdiML=aNJuHeriwxg@mail.gmail.com

Branch
------
master

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

Modified Files
--------------
src/backend/access/heap/vacuumlazy.c | 4 ++--
src/backend/catalog/index.c | 2 +-
src/backend/commands/analyze.c | 2 +-
src/backend/commands/vacuumparallel.c | 2 +-
src/include/access/genam.h | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Geoghegan 2023-04-03 18:31:59 pgsql: Recycle deleted nbtree pages more aggressively.
Previous Message Robert Haas 2023-04-03 17:54:37 pgsql: Fix possible logical replication crash.