mariadb/mysql-test/suite/tokudb/r/simple_truncate.result
Rich Prohaska c22ab2bbb5 refs #6440 simplify the mysql tests for tokudb
git-svn-id: file:///svn/mysql/tests/mysql-test@54997 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-02 14:02:03 +00:00

12 lines
212 B
Text

drop table if exists t;
create table t (a int, b int, primary key (a)) engine=tokudb;
insert into t values (1,2),(2,4),(3,8);
select * from t;
a b
1 2
2 4
3 8
truncate table t;
select * from t;
a b
drop table t;