1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MWL#182: Explain running statements: address review feedback

- switch SHOW EXPLAIN to using an INFORMATION_SCHEMA table.
This commit is contained in:
Sergey Petrunya
2012-07-10 21:23:00 +04:00
parent a931467e17
commit 725d76e1e8
11 changed files with 118 additions and 175 deletions

View File

@ -798,7 +798,7 @@ pk data
20 data1
set autocommit=0;
select * from t1 where pk between 10 and 20 for update;
show explain for 3;
# do: send_eval show explain for 3;
kill query $thr_default;
ERROR 70100: Query execution was interrupted
rollback;
@ -816,3 +816,8 @@ pk data
20 data1
drop table t1;
drop table t0;
#
# Check that the I_S table is invisible
#
select table_name from information_schema.tables where table_schema='information_schema' and table_name like '%explain%';
table_name