summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/simple_delete_all.result
blob: e280dd9ed093889c015e23389493490a10421ae9 (plain)
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
delete from t;
select * from t;
a	b
drop table t;