summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/t/mvcc-30.test
blob: f9dfe0e75d328032501b3701ae24297001c46ef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# simple keyrange64 test, ensure that it reads number of leafentries in the system

#--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 conn1;
set session transaction isolation level repeatable read;

connection default;
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);

connection conn1;
begin;
select * from foo;
--echo # number of rows should be 9
explain select * from foo where a < 50;

connection default;
delete from foo where a < 10;
--echo # number of rows should be 9
explain select * from foo where a < 50;
--echo # should have just 4 values
select * from foo where a < 50;

connection conn1;
--echo # number of rows should be 9
explain select * from foo where a < 50;
--echo # 9 values
select * From foo where a < 50;
commit;

connection default;
disconnect conn1;

connection default;
# Final cleanup.
set session transaction isolation level serializable;
DROP TABLE foo;