You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

41 lines
961 B

# make sure reads done during writes take read locks
#--source include/have_tokudb.inc
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
--echo # Establish connection conn1 (user = root)
connect (conn1,localhost,root,,);
--disable_warnings
DROP TABLE IF EXISTS foo;
--enable_warnings
connection default;
set session transaction isolation level repeatable read;
create table foo (a int, b int, primary key (a))engine=TokuDB;
show create table foo;
insert into foo values (1,100);
select * from foo;
begin;
insert into foo values (100,100);
--echo # should see (1,100)
select * from foo;
connection conn1;
set session transaction isolation level repeatable read;
--echo # should NOT see (1,100)
select * from foo;
connection default;
--echo # should see (1,100)
select * from foo;
rollback;
--echo # should NOT see (1,100)
select * from foo;
disconnect conn1;
connection default;
# Final cleanup.
set session transaction isolation level serializable;
DROP TABLE foo;