pgsql: Refactor variable names in remove_self_joins_one_group()

From: Alexander Korotkov <akorotkov(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Refactor variable names in remove_self_joins_one_group()
Date: 2025-08-26 10:24:03
Message-ID: E1uqqqR-001k7u-0I@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Refactor variable names in remove_self_joins_one_group()

Rename inner and outer to rrel and krel, respectively, to highlight their
connection to r and k indexes. For the same reason, rename imark and omark
to rmark and kmark.

Discussion: https://postgr.es/m/18c6bd6c-6d2a-419a-b0da-dfedef34b585%40gmail.com
Author: Andrei Lepikhov <lepihov(at)gmail(dot)com>
Reviewed-by: Greg Sabino Mullane <htamfids(at)gmail(dot)com>
Backpatch-through: 18

Branch
------
REL_18_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/8202b0e83d0928ce9344c31f90cdd4a1e963b568

Modified Files
--------------
src/backend/optimizer/plan/analyzejoins.c | 50 +++++++++++++++----------------
1 file changed, 25 insertions(+), 25 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2025-08-26 16:09:12 pgsql: Do CHECK_FOR_INTERRUPTS inside, not before, scanGetItem.
Previous Message Alexander Korotkov 2025-08-26 10:23:35 pgsql: Further clarify documentation for the initcap function