pgsql: Move heaprel struct field next to index rel field. - Mailing list pgsql-committers

From Peter Geoghegan
Subject pgsql: Move heaprel struct field next to index rel field.
Date
Msg-id E1pjOVK-001C94-E1@gemulon.postgresql.org
Whole thread Raw
List 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@bowt.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(-)


pgsql-committers by date:

Previous
From: Robert Haas
Date:
Subject: pgsql: Fix possible logical replication crash.
Next
From: Peter Geoghegan
Date:
Subject: pgsql: Recycle deleted nbtree pages more aggressively.