fixup! Add support for EXPLAIN ANALYZE in graph mode

This commit is contained in:
Tanay Tummalapalli 2024-10-16 02:14:50 +05:30
parent 88eeba57f8
commit 2f65d03416

View File

@ -637,7 +637,7 @@ QueryPipeline InterpreterExplainQuery::executeImpl()
BlockIO res; BlockIO res;
//Build Query Plan //Build Query Plan
if (getContext()->getSettingsRef().allow_experimental_analyzer) if (getContext()->getSettingsRef()[Setting::allow_experimental_analyzer])
{ {
InterpreterSelectQueryAnalyzer interpreter(ast.getExplainedQuery(), getContext(), options); InterpreterSelectQueryAnalyzer interpreter(ast.getExplainedQuery(), getContext(), options);
res = interpreter.execute(); res = interpreter.execute();