truncate.result 157 Bytes
Newer Older
1 2 3 4 5 6 7 8
CREATE TABLE t (a SERIAL) ENGINE=InnoDB;
connect  dml,localhost,root;
select * from t;
a
connection default;
TRUNCATE TABLE t;
disconnect dml;
DROP TABLE t;