1
0
mirror of https://github.com/MariaDB/server.git synced 2025-06-03 07:02:23 +03:00
mariadb/mysql-test/t/delete.test
unknown 9cecbe9bc2 Test replace on all table types.
Test delete from BDB table using hidden primary key.
2000-12-21 11:58:02 +02:00

9 lines
175 B
Plaintext

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;