mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-30032: EXPLAIN FORMAT=JSON output: print costs
Basic printout for join and table execution costs.
This commit is contained in:
@ -7,6 +7,7 @@ create table t1 (
|
||||
) partition by key(a);
|
||||
insert into t1 select a from t2;
|
||||
explain partitions select * from t1 where a in (2,3,4);
|
||||
--source include/explain-no-costs.inc
|
||||
explain format=json select * from t1 where a in (2,3,4);
|
||||
--source include/analyze-format.inc
|
||||
analyze format=json select * from t1 where a in (2,3,4);
|
||||
|
Reference in New Issue
Block a user