pgsql: Fix oversight in handling of row-comparison index keys: if the - Mailing list pgsql-committers

From tgl@postgresql.org (Tom Lane)
Subject pgsql: Fix oversight in handling of row-comparison index keys: if the
Date
Msg-id 20070107015624.A92A09FB1EB@postgresql.org
Whole thread Raw
List pgsql-committers
Log Message:
-----------
Fix oversight in handling of row-comparison index keys: if the row comparison
doesn't exactly match the index, we may have to change our initial positioning
strategy.  For example, given an index on (f1,f2,f3) and a WHERE condition
"ROW(f1,f3) > ROW(2,3)", the code extracted the initial-positioning condition
"f1 > 2", which is wrong ... it has to be "f1 >= 2", else some rows matching
the WHERE condition may fail to be returned.

Applying patch to 8.2 only --- I'll fix it in HEAD later as part of the
planned index improvements (reverse-sort and NULLS FIRST/LAST work).

Tags:
----
REL8_2_STABLE

Modified Files:
--------------
    pgsql/src/backend/access/nbtree:
        nbtsearch.c (r1.107 -> r1.107.2.1)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/nbtree/nbtsearch.c.diff?r1=1.107&r2=1.107.2.1)

pgsql-committers by date:

Previous
From: petere@postgresql.org (Peter Eisentraut)
Date:
Subject: pgsql: Allow XML fragment to contain a XML declaration.
Next
From: petere@postgresql.org (Peter Eisentraut)
Date:
Subject: pgsql: Indent comments in makefiles better so they don't appear in the