Expand the 'special index operator' machinery to handle special cases
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 26 Mar 2005 23:29:20 +0000 (23:29 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 26 Mar 2005 23:29:20 +0000 (23:29 +0000)
commit06fafaddbe5d8aa2e290582b198d87f7719525d0
treeb255cf1012b2e2de5bf6ef470da743ede5713260
parent6fc464bb89e1029a09cc7d61498a377ab0fa029d
Expand the 'special index operator' machinery to handle special cases
for boolean indexes.  Previously we would only use such an index with
WHERE clauses like 'indexkey = true' or 'indexkey = false'.  The new
code transforms the cases 'indexkey', 'NOT indexkey', 'indexkey IS TRUE',
and 'indexkey IS FALSE' into one of these.  While this is only marginally
useful in itself, I intend soon to change constant-expression simplification
so that 'foo = true' and 'foo = false' are reduced to just 'foo' and
'NOT foo' ... which would lose the ability to use boolean indexes for
such queries at all, if the indexscan machinery couldn't make the
reverse transformation.
src/backend/optimizer/path/indxpath.c
src/backend/optimizer/path/orindxpath.c
src/backend/optimizer/util/pathnode.c
src/include/catalog/pg_opclass.h
src/include/optimizer/paths.h