mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
034a2219f0
git-svn-id: file:///svn/mysql/tests/mysql-test@55032 c7de825b-a66e-492c-adef-691d508d4ae1
13 lines
284 B
Text
13 lines
284 B
Text
SET DEFAULT_STORAGE_ENGINE='tokudb';
|
|
drop table if exists t;
|
|
create table t (a int primary key, b int);
|
|
insert into t values (1,0),(2,1),(3,0);
|
|
begin;
|
|
delete from t where b>0;
|
|
set transaction isolation level serializable;
|
|
select * from t where a!=2;
|
|
commit;
|
|
a b
|
|
1 0
|
|
3 0
|
|
drop table t;
|