pgsql: Simplify relation_has_unique_index_for() - Mailing list pgsql-committers

From Richard Guo
Subject pgsql: Simplify relation_has_unique_index_for()
Date
Msg-id E1uoAOB-000Yq3-0e@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Simplify relation_has_unique_index_for()

Now that the only call to relation_has_unique_index_for() that
supplied an exprlist and oprlist has been removed, the loop handling
those lists is effectively dead code.  This patch removes that loop
and simplifies the function accordingly.

Author: Richard Guo <guofenglinux@gmail.com>
Discussion: https://postgr.es/m/CAMbWs4-EBnaRvEs7frTLbsXiweSTUXifsteF-d3rvv01FKO86w@mail.gmail.com

Branch
------
master

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

Modified Files
--------------
src/backend/optimizer/path/indxpath.c     | 85 +++++--------------------------
src/backend/optimizer/plan/analyzejoins.c |  5 +-
src/include/optimizer/paths.h             |  5 +-
3 files changed, 17 insertions(+), 78 deletions(-)


pgsql-committers by date:

Previous
From: Michael Paquier
Date:
Subject: pgsql: test_ddl_deparse: Rename test create_sequence_1 to create_sequen
Next
From: Michael Paquier
Date:
Subject: pgsql: Remove useless pointer update in StatsShmemInit()