pgsql: Repair bug #4926 "too few pathkeys for mergeclauses".

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Repair bug #4926 "too few pathkeys for mergeclauses".
Date: 2009-07-17 23:19:34
Message-ID: 20090717231934.9F60475331E@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Repair bug #4926 "too few pathkeys for mergeclauses". This example shows
that the sanity checking I added to create_mergejoin_plan() in 8.3 was a
few bricks shy of a load: the mergeclauses could reference pathkeys in a
noncanonical order such as x,y,x, not only cases like x,x,y which is all
that the code had allowed for. The odd cases only turn up when using
redundant clauses in an outer join condition, which is why no one had
noticed before.

Modified Files:
--------------
pgsql/src/backend/optimizer/path:
pathkeys.c (r1.97 -> r1.98)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/optimizer/path/pathkeys.c?r1=1.97&r2=1.98)
pgsql/src/backend/optimizer/plan:
createplan.c (r1.260 -> r1.261)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/optimizer/plan/createplan.c?r1=1.260&r2=1.261)
pgsql/src/test/regress/expected:
join.out (r1.36 -> r1.37)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/expected/join.out?r1=1.36&r2=1.37)
pgsql/src/test/regress/sql:
join.sql (r1.27 -> r1.28)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/sql/join.sql?r1=1.27&r2=1.28)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2009-07-17 23:19:59 pgsql: Repair bug #4926 "too few pathkeys for mergeclauses".
Previous Message User Mkz 2009-07-17 15:47:50 pgbouncer - pgbouncer: doc/usage.txt improvements Patch by Greg Sabino