From f7fbf4b0be509d964041ee13311b9203a035e4ab Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 30 Dec 2013 12:50:31 -0500 Subject: 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. --- src/backend/optimizer/plan/createplan.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/backend/optimizer/plan/createplan.c') 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, -- cgit v1.2.3