diff options
author | unknown <tim@cane.mysql.fi> | 2000-12-21 11:58:02 +0200 |
---|---|---|
committer | unknown <tim@cane.mysql.fi> | 2000-12-21 11:58:02 +0200 |
commit | 9cecbe9bc20c1d888b9cb8a49a55b48a305166ae (patch) | |
tree | 8cc30a1c2a09a84abcc4f9d1046b179d996ee0cf /mysql-test/t/delete.test | |
parent | 97679a923251b8a35a78c6d0f4e69a360fdd290e (diff) | |
download | mariadb-git-9cecbe9bc20c1d888b9cb8a49a55b48a305166ae.tar.gz |
Test replace on all table types.
Test delete from BDB table using hidden primary key.
Diffstat (limited to 'mysql-test/t/delete.test')
-rw-r--r-- | mysql-test/t/delete.test | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/delete.test b/mysql-test/t/delete.test new file mode 100644 index 00000000000..85802354b2c --- /dev/null +++ b/mysql-test/t/delete.test @@ -0,0 +1,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; |