summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/mvcc-25.result
blob: 427d1ca5c3f08e800702c982a5068cfea46e27b1 (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
48
49
50
51
52
53
54
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
# Establish connection conn1 (user = root)
DROP TABLE IF EXISTS foo,bar;
set session transaction isolation level repeatable read;
create table foo (a int, b varchar (100), primary key (a))engine=TokuDB;
create table bar like foo;
show create table foo;
Table	Create Table
foo	CREATE TABLE `foo` (
  `a` int(11) NOT NULL DEFAULT '0',
  `b` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`a`)
) ENGINE=TokuDB DEFAULT CHARSET=latin1
show create table bar;
Table	Create Table
bar	CREATE TABLE `bar` (
  `a` int(11) NOT NULL DEFAULT '0',
  `b` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`a`)
) ENGINE=TokuDB DEFAULT CHARSET=latin1
set session transaction isolation level repeatable read;
begin;
# should be empty
select * from foo;
a	b
begin;
# should be empty
select * from bar;
a	b
begin;
# should be empty
select * from foo;
a	b
insert into foo values (1,"g");
commit;
replace into foo values (1,"ga");
replace into foo values (1,"gar");
replace into foo values (1,"garb");
replace into foo values (1,"aaaa");
# should have one value
select * from foo;
a	b
1	aaaa
commit;
# should be empty
select * from foo;
a	b
commit;
# should be empty
select * from foo;
a	b
commit;
set session transaction isolation level serializable;
DROP TABLE foo,bar;