pgsql: Update wording in optimizer/README for EquivalenceClasses

From: David Rowley <drowley(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Update wording in optimizer/README for EquivalenceClasses
Date: 2025-04-10 05:34:56
Message-ID: E1u2kYy-003YDw-2R@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Update wording in optimizer/README for EquivalenceClasses

d69d45a5a changed how em_is_child members are stored in
EquivalenceClasses. Children are no longer stored in the ec_members
list. optimizer/README mentioned that most operations "should ignore
child members", but that felt a little untrue now since child members
are now stored in a separate place, they simply won't be found by the
normal means of looking (a foreach loop over ec_members), and if you don't
find them, there's technically no need to "ignore" them.

Here we tweak the wording slightly to reflect the new storage location
for child members.

Reported-by: Amit Langote <amitlangote09(at)gmail(dot)com>
Author: Amit Langote <amitlangote09(at)gmail(dot)com>
Author: David Rowley <dgrowleyml(at)gmail(dot)com>
Discussion: https://postgr.es/m/CA+HiwqE8v=EuAP_3F_A2xn8zWx+nG_etW_Fe_DvKO-Fkx=+DdQ@mail.gmail.com

Branch
------
master

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

Modified Files
--------------
src/backend/optimizer/README | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2025-04-10 06:14:25 pgsql: Fix incorrect format placeholders
Previous Message Amit Kapila 2025-04-10 05:08:56 pgsql: Cosmetic fixes for pg_createsubscriber's -all option.