Instead of rechecking lossy index operators by putting them into the

Tom Lane <tgl@sss.pgh.pa.us>

Commit: b0c4a50bbbbd62c444cb3806a97c1e51e2249cfd
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2004-01-06T04:31:01Z
Releases: 8.0.0
Instead of rechecking lossy index operators by putting them into the
regular qpqual ('filter condition'), add special-purpose code to
nodeIndexscan.c to recheck them.  This ends being almost no net addition
of code, because the removal of planner code balances out the extra
executor code, but it is significantly more efficient when a lossy
operator is involved in an OR indexscan.  The old implementation had
to recheck the entire indexqual in such cases.

Files