summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/MDEV-22458.result
blob: d1f9d94bd1c1abd779d63b1047a0790095794098 (plain)
1
2
3
4
5
6
7
8
9
10
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 running an EXPLAINable command
connection con1;
INSERT INTO t1 VALUES (5),(6),(7),(8);
DROP TABLE t1;