From 2f65d03416dc77271daa701528f042669bdcea87 Mon Sep 17 00:00:00 2001 From: Tanay Tummalapalli Date: Wed, 16 Oct 2024 02:14:50 +0530 Subject: [PATCH] fixup! Add support for EXPLAIN ANALYZE in graph mode --- src/Interpreters/InterpreterExplainQuery.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Interpreters/InterpreterExplainQuery.cpp b/src/Interpreters/InterpreterExplainQuery.cpp index 5a43c949129..1efa46e16e0 100644 --- a/src/Interpreters/InterpreterExplainQuery.cpp +++ b/src/Interpreters/InterpreterExplainQuery.cpp @@ -637,7 +637,7 @@ QueryPipeline InterpreterExplainQuery::executeImpl() BlockIO res; //Build Query Plan - if (getContext()->getSettingsRef().allow_experimental_analyzer) + if (getContext()->getSettingsRef()[Setting::allow_experimental_analyzer]) { InterpreterSelectQueryAnalyzer interpreter(ast.getExplainedQuery(), getContext(), options); res = interpreter.execute();