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:
@ -5,6 +5,7 @@ create or replace table t1 (col1 char(10) character set ucs2, filler char(100),
|
||||
insert into t1 values ('a', 'a');
|
||||
insert into t1 values ('a', 'a');
|
||||
set optimizer_trace=1;
|
||||
--source include/explain-no-costs.inc
|
||||
explain format=json select * from t1 force index(col1) where col1 >='a';
|
||||
#enable after fix MDEV-27871
|
||||
--disable_view_protocol
|
||||
|
Reference in New Issue
Block a user