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:
@ -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
|
||||
|
Reference in New Issue
Block a user