mariadb/storage/tokudb/mysql-test/tokudb_mariadb/r/mdev5426.result
2016-06-30 16:38:05 +02:00

9 lines
321 B
Text

CREATE TABLE t1 (i INT) ENGINE=TokuDB;
EXPLAIN INSERT INTO t1 SELECT * FROM t1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 1 Using temporary
connect con1,localhost,root,,test;
INSERT INTO t1 SELECT * FROM t1;
connection default;
disconnect con1;
DROP TABLE t1;