Remove support for OR'd indexscans internal to a single IndexScan plan

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

Commit: 5b05185262fd562080ecfd675c7b3634a69851c0
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2005-04-25T01:30:14Z
Releases: 8.1.0
Remove support for OR'd indexscans internal to a single IndexScan plan
node, as this behavior is now better done as a bitmap OR indexscan.
This allows considerable simplification in nodeIndexscan.c itself as
well as several planner modules concerned with indexscan plan generation.
Also we can improve the sharing of code between regular and bitmap
indexscans, since they are now working with nigh-identical Plan nodes.

Files