Skip to content

Commit 27b6204

Browse files
committed
Force to use generic plans for performance testing.
1 parent ae0b9d0 commit 27b6204

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/backend/utils/cache/plancache.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1150,7 +1150,8 @@ GetCachedPlan(CachedPlanSource *plansource, ParamListInfo boundParams,
11501150
qlist = RevalidateCachedQuery(plansource, queryEnv);
11511151

11521152
/* Decide whether to use a custom plan */
1153-
customplan = choose_custom_plan(plansource, boundParams);
1153+
/* customplan = choose_custom_plan(plansource, boundParams); */
1154+
customplan = false;
11541155

11551156
if (!customplan)
11561157
{

0 commit comments

Comments
 (0)