pgsql: When adding a "target IS NOT NULL" indexqual to the plan for an

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: When adding a "target IS NOT NULL" indexqual to the plan for an
Date: 2010-05-10 16:25:46
Message-ID: 20100510162546.903347541D2@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
When adding a "target IS NOT NULL" indexqual to the plan for an index-optimized
MIN or MAX, we must take care to insert the added qual in a legal place among
the existing indexquals, if any. The btree index AM requires the quals to
appear in index-column order. We didn't have to worry about this before
because "target IS NOT NULL" was just treated as a plain scan filter condition;
but as of 9.0 it can be an index qual and then it has to follow the rule.
Per report from Ian Barwick.

Modified Files:
--------------
pgsql/src/backend/optimizer/plan:
planagg.c (r1.51 -> r1.52)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/optimizer/plan/planagg.c?r1=1.51&r2=1.52)

Browse pgsql-committers by date

  From Date Subject
Next Message User Fxjr 2010-05-11 01:42:01 npgsql - Npgsql2: Changed line endings to Windows Format.
Previous Message User Mkz 2010-05-10 11:36:26 pgbouncer - pgbouncer: Clean warning flags for newer gccs.