From 794eee342f1e62863da74364f26844b2db98bff2 Mon Sep 17 00:00:00 2001 From: peryliu Date: Fri, 25 Apr 2025 15:44:00 +0800 Subject: [PATCH] [bugfix] fix explain analyze format=json crash --- sql/opt_explain.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/sql/opt_explain.cc b/sql/opt_explain.cc index 9205bab1f5b..418400b606e 100644 --- a/sql/opt_explain.cc +++ b/sql/opt_explain.cc @@ -2294,6 +2294,7 @@ bool explain_query(THD *explain_thd, const THD *query_thd, my_error(ER_NOT_SUPPORTED_YET, MYF(0), "EXPLAIN ANALYZE with TRADITIONAL format"); } + return true; } // Non-iterator-based formats are not supported with the hypergraph -- 2.43.5