pgsql: Standardize some more loops that chase down parallel lists.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Standardize some more loops that chase down parallel lists.
Date: 2019-02-28 19:25:11
Message-ID: E1gzRIt-0000C9-UW@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Standardize some more loops that chase down parallel lists.

We have forboth() and forthree() macros that simplify iterating
through several parallel lists, but not everyplace that could
reasonably use those was doing so. Also invent forfour() and
forfive() macros to do the same for four or five parallel lists,
and use those where applicable.

The immediate motivation for doing this is to reduce the number
of ad-hoc lnext() calls, to reduce the footprint of a WIP patch.
However, it seems like good cleanup and error-proofing anyway;
the places that were combining forthree() with a manually iterated
loop seem particularly illegible and bug-prone.

There was some speculation about restructuring related parsetree
representations to reduce the need for parallel list chasing of
this sort. Perhaps that's a win, or perhaps not, but in any case
it would be considerably more invasive than this patch; and it's
not particularly related to my immediate goal of improving the
List infrastructure. So I'll leave that question for another day.

Patch by me; thanks to David Rowley for review.

Discussion: https://postgr.es/m/11587.1550975080@sss.pgh.pa.us

Branch
------
master

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

Modified Files
--------------
src/backend/access/common/tupdesc.c | 19 ++++-----------
src/backend/executor/execExpr.c | 20 ++++------------
src/backend/executor/nodeIndexscan.c | 28 +++++++++--------------
src/backend/optimizer/plan/subselect.c | 5 +---
src/backend/optimizer/prep/prepunion.c | 7 ++----
src/backend/parser/analyze.c | 42 +++++++++++-----------------------
src/backend/parser/parse_func.c | 7 +++---
src/backend/utils/adt/ruleutils.c | 37 +++++++++---------------------
src/include/nodes/pg_list.h | 26 +++++++++++++++++++++
9 files changed, 76 insertions(+), 115 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2019-02-28 19:44:12 pgsql: Merge near-duplicate code in RI triggers
Previous Message Peter Eisentraut 2019-02-28 14:32:16 pgsql: Clean up some variable names in ri_triggers.c