1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-25 17:25:02 +03:00
Files
mariadb/storage/tokudb/mysql-test/tokudb_mariadb/r/mdev5426.result
2016-06-30 16:38:05 +02:00

10 lines
321 B
Plaintext

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;