mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
10 lines
280 B
Text
10 lines
280 B
Text
|
# verify that delete from table leaves the table empty
|
||
|
--disable_warnings
|
||
|
drop table if exists t;
|
||
|
--enable_warnings
|
||
|
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;
|
||
|
delete from t;
|
||
|
select * from t;
|
||
|
drop table t;
|