simple_truncate.result 212 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
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;