summaryrefslogtreecommitdiff
path: root/mysql-test/main/opt_trace.test
diff options
context:
space:
mode:
authorSergei Petrunia <psergey@askmonty.org>2020-06-15 12:59:53 +0300
committerSergei Petrunia <psergey@askmonty.org>2020-06-15 13:00:43 +0300
commit517e9334f2a0f0d70cb139deb110213536dbb96d (patch)
tree75d8bfa2b2ac97927d8d7c172877224477dbf575 /mysql-test/main/opt_trace.test
parentc9f5cb97af6d3ef853f84a19602efea715016734 (diff)
downloadmariadb-git-517e9334f2a0f0d70cb139deb110213536dbb96d.tar.gz
MDEV-22891: Optimizer trace: const tables are not clearly visible
Make mark_join_nest_as_const() print its action into the trace.
Diffstat (limited to 'mysql-test/main/opt_trace.test')
-rw-r--r--mysql-test/main/opt_trace.test23
1 files changed, 23 insertions, 0 deletions
diff --git a/mysql-test/main/opt_trace.test b/mysql-test/main/opt_trace.test
index f2d7b67983d..f7f19e38eac 100644
--- a/mysql-test/main/opt_trace.test
+++ b/mysql-test/main/opt_trace.test
@@ -604,5 +604,28 @@ DROP TABLE t1,t2;
select count(*) from seq_1_to_10000000;
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
+--echo #
+--echo # MDEV-22891: Optimizer trace: const tables are not clearly visible
+--echo #
+create table t0(a int primary key);
+insert into t0 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
+
+create table t1 (pk int primary key, a int);
+insert into t1 select a,a from t0;
+
+create table t2 (pk int primary key, a int);
+insert into t2 select a,a from t0;
+
+create table t3 (pk int primary key, a int);
+insert into t3 select a,a from t0;
+
+explain
+select * from t1 left join (t2 join t3 on t3.pk=1000) on t2.a=t1.a and t2.pk is null;
+
+select JSON_DETAILED(JSON_EXTRACT(trace, '$**.mark_join_nest_as_const'))
+from information_schema.optimizer_trace;
+
+drop table t0, t1, t2, t3;
+
--echo # End of 10.5 tests
set optimizer_trace='enabled=off';