mariadb/mysql-test/suite/tokudb.mvcc/r/mvcc-40.result
Zardosht Kasheff 751fe6d703 [t:2985], add tests, only mvcc-40 shows the problem, mvcc-39 shows that toku_brt_is_empty_fast is fine
git-svn-id: file:///svn/mysql/tests/mysql-test@24783 c7de825b-a66e-492c-adef-691d508d4ae1
2010-10-23 04:24:30 +00:00

33 lines
679 B
Text
Executable file

SET STORAGE_ENGINE = 'tokudb';
# Establish connection conn1 (user = root)
DROP TABLE IF EXISTS foo;
set session tokudb_load_save_space=0;
create table foo (a int) engine=TokuDB;
show create table foo;
Table Create Table
foo CREATE TABLE `foo` (
`a` int(11) DEFAULT NULL
) ENGINE=TOKUDB DEFAULT CHARSET=latin1
insert into foo values (1),(2),(3);
set session transaction isolation level repeatable read;
begin;
# should return (1),(2),(3)
select * from foo;
a
1
2
3
delete from foo;
insert into foo values (4);
# should return (4)
select * from foo;
a
4
# should return (1),(2),(3)
select * from foo;
a
1
2
3
set session transaction isolation level serializable;
DROP TABLE foo;