summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Petrunia <sergey@mariadb.com>2023-05-10 20:08:33 +0300
committerSergei Petrunia <sergey@mariadb.com>2023-05-10 20:08:33 +0300
commit4fdd1c4b911ce954f087e47b9b1020b7cd83f70d (patch)
tree53b961cdabac103edd021804ea70dfcd0f4c3d3a
parent0bb31039f54bd6a0dc8f0fc7d40e6b58a51998b0 (diff)
downloadmariadb-git-4fdd1c4b911ce954f087e47b9b1020b7cd83f70d.tar.gz
Fix ./mtr --view-protocol opt_tracebb-10.11-release
Follow the approach taken in the rest of the test.
-rw-r--r--mysql-test/main/opt_trace.test6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/main/opt_trace.test b/mysql-test/main/opt_trace.test
index 3f1f1fd1204..5238af5c7a0 100644
--- a/mysql-test/main/opt_trace.test
+++ b/mysql-test/main/opt_trace.test
@@ -756,6 +756,11 @@ select * from
from t10 left join t11 on t11.col1=t10.col1
group by grp_id) T on T.grp_id=t1.b;
+# Not sure how MDEV-27871 is related but this test uses this reason
+# all over the place:
+#enable after fix MDEV-27871
+--disable_view_protocol
+
select json_detailed(json_extract(trace, '$**.check_split_materialized')) as JS
from information_schema.optimizer_trace;
@@ -768,6 +773,7 @@ select
) as JS
from information_schema.optimizer_trace;
+--enable_view_protocol
drop table t1,t2,t3,t10,t11;
set optimizer_trace=DEFAULT;