mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
6ea6978847
Test delete from BDB table using hidden primary key.
8 lines
175 B
Text
8 lines
175 B
Text
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;
|