mirror of
https://github.com/MariaDB/server.git
synced 2025-02-04 21:02:17 +01:00
a0475cb9ca
1. Add explicit indication that the output is produced by SHOW EXPLAIN/ANALYZE FORMAT=JSON command. 2. Remove useless "r_total_time_ms" field from SHOW ANALYZE FORMAT=JSON output when there is no timed statistics gathered. 3. Add "r_query_time_in_progress_ms" to the output of SHOW ANALYZE FORMAT=JSON.
10 lines
301 B
Text
10 lines
301 B
Text
connection node_2;
|
|
connection node_1;
|
|
CREATE TABLE t1 (a INT);
|
|
connect con1,localhost,root,,test;
|
|
INSERT INTO t1 VALUES (1),(2),(3),(4);
|
|
SHOW EXPLAIN FOR $con1;
|
|
ERROR HY000: Target is not executing an operation with a query plan
|
|
connection con1;
|
|
INSERT INTO t1 VALUES (5),(6),(7),(8);
|
|
DROP TABLE t1;
|