mariadb/mysql-test/suite/tokudb/r/mvcc-29.result
Rich Prohaska e776ba7701 refs #6440 move mvcc tests
git-svn-id: file:///svn/mysql/tests/mysql-test@55041 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-03 21:42:19 +00:00

55 lines
1.3 KiB
Text
Executable file

SET DEFAULT_STORAGE_ENGINE = 'tokudb';
# Establish connection conn1 (user = root)
DROP TABLE IF EXISTS foo;
set session transaction isolation level repeatable read;
set session transaction isolation level repeatable read;
create table foo (a int, b int, primary key (a))engine=TokUDB;
insert into foo values (1,1),(2,2),(3,3),(4,4),(5,5),(10,10),(20,20),(30,30),(40,40),(50,50);
begin;
select * from foo;
a b
1 1
2 2
3 3
4 4
5 5
10 10
20 20
30 30
40 40
50 50
# number of rows should be 9
explain select * from foo where a > 1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE foo range PRIMARY PRIMARY 4 NULL 9 Using where
delete from foo where a > 5;
# number of rows should be 9
explain select * from foo where a > 1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE foo range PRIMARY PRIMARY 4 NULL 9 Using where
# should have just 4 values
select * from foo where a > 1;
a b
2 2
3 3
4 4
5 5
# number of rows should be 9
explain select * from foo where a > 1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE foo range PRIMARY PRIMARY 4 NULL 9 Using where
# 9 values
select * From foo where a > 1;
a b
2 2
3 3
4 4
5 5
10 10
20 20
30 30
40 40
50 50
commit;
set session transaction isolation level serializable;
DROP TABLE foo;