From 52267a95bab0f4791a3f18c7e62cbe2828c8cc50 Mon Sep 17 00:00:00 2001 From: Ivan Kovmir Date: Sat, 27 Jan 2024 11:18:44 +0100 Subject: [PATCH] Bring back query cost estimation --- pg_show_plans.c | 1 - 1 file changed, 1 deletion(-) diff --git a/pg_show_plans.c b/pg_show_plans.c index 3912929..066c0da 100644 --- a/pg_show_plans.c +++ b/pg_show_plans.c @@ -464,7 +464,6 @@ pgsp_ExecutorStart(QueryDesc *queryDesc, int eflags) es = NewExplainState(); es->format = pgsp->plan_format; - es->costs = false; ExplainBeginOutput(es); ExplainPrintPlan(es, queryDesc); ExplainEndOutput(es);