From 40d9842e2211f4c561b4d562ab11fd217dd39869 Mon Sep 17 00:00:00 2001 From: Malcolm Locke Date: Tue, 16 Jul 2024 12:17:48 +1200 Subject: [PATCH] Add verbose and buffers to explain analyze --- app/controllers/pg_hero/home_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/pg_hero/home_controller.rb b/app/controllers/pg_hero/home_controller.rb index a29d8ab1a..d7e6a5111 100644 --- a/app/controllers/pg_hero/home_controller.rb +++ b/app/controllers/pg_hero/home_controller.rb @@ -298,7 +298,7 @@ def explain explain_options = case params[:commit] when "Analyze" - {analyze: true} + {analyze: true, verbose: true, buffers: true} when "Visualize" if @explain_analyze_enabled {analyze: true, costs: true, verbose: true, buffers: true, format: "json"}