summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/galera/r/MDEV-22458.result
blob: 7c8537356413e16c3c0dd89dbd914e2c2cfe00b0 (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 executing an operation with a query plan
connection con1;
INSERT INTO t1 VALUES (5),(6),(7),(8);
DROP TABLE t1;