summaryrefslogtreecommitdiff
path: root/mysql-test/t/delete.test
blob: 85802354b2c8bd3efc1fe3ca72497f6792cc241c (plain)
1
2
3
4
5
6
7
8
drop table if exists t1;

# test delete using hidden_primary_key
create table t1 (a int) type=bdb;
insert into t1 values (1), (2);
delete from t1 where a = 1;

drop table t1;