summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeBitmapOr.c
AgeCommit message (Collapse)Author
2005-04-20Minor performance improvement: avoid unnecessary creation/unioning ofTom Lane
bitmaps for multiple indexscans. Instead just let each indexscan add TIDs directly into the BitmapOr node's result bitmap.
2005-04-19Create executor and planner-backend support for decoupled heap and indexTom Lane
scans, using in-memory tuple ID bitmaps as the intermediary. The planner frontend (path creation and cost estimation) is not there yet, so none of this code can be executed. I have tested it using some hacked planner code that is far too ugly to see the light of day, however. Committing now so that the bulk of the infrastructure changes go in before the tree drifts under me.