aboutsummaryrefslogtreecommitdiff
path: root/src/backend/optimizer/plan/createplan.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2013-12-30 12:50:31 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2013-12-30 12:50:31 -0500
commitf7fbf4b0be509d964041ee13311b9203a035e4ab (patch)
treef7b92cfe7951c92ca71afbd972b147f4413c138b /src/backend/optimizer/plan/createplan.c
parentf343a880d5555faf1dad0286c5632047c8f599ad (diff)
downloadpostgresql-f7fbf4b0be509d964041ee13311b9203a035e4ab.tar.gz
postgresql-f7fbf4b0be509d964041ee13311b9203a035e4ab.zip
Remove dead code now that orindxpath.c is history.
We don't need make_restrictinfo_from_bitmapqual() anymore at all. generate_bitmap_or_paths() doesn't need to be exported, and we can drop its rather klugy restriction_only flag.
Diffstat (limited to 'src/backend/optimizer/plan/createplan.c')
-rw-r--r--src/backend/optimizer/plan/createplan.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/backend/optimizer/plan/createplan.c b/src/backend/optimizer/plan/createplan.c
index f2c122d2959..701fe786ce7 100644
--- a/src/backend/optimizer/plan/createplan.c
+++ b/src/backend/optimizer/plan/createplan.c
@@ -1413,9 +1413,6 @@ create_bitmap_scan_plan(PlannerInfo *root,
* OR subtrees. This could be done in a less hacky way if we returned the
* indexquals in RestrictInfo form, but that would be slower and still pretty
* messy, since we'd have to build new RestrictInfos in many cases.)
- *
- * Note: if you find yourself changing this, you probably need to change
- * make_restrictinfo_from_bitmapqual too.
*/
static Plan *
create_bitmap_subplan(PlannerInfo *root, Path *bitmapqual,