mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
0eb082c19e
git-svn-id: file:///svn/mysql/tests/mysql-test@40974 c7de825b-a66e-492c-adef-691d508d4ae1
88 lines
1.7 KiB
Text
Executable file
88 lines
1.7 KiB
Text
Executable file
SET STORAGE_ENGINE = 'tokudb';
|
|
# Establish connection conn1 (user = root)
|
|
DROP TABLE IF EXISTS foo;
|
|
create table foo (a int, b varchar (100), primary key (a)) engine=TokuDB;
|
|
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
|
|
set session transaction isolation level repeatable read;
|
|
begin;
|
|
select * from foo;
|
|
a b
|
|
replace into foo values (1, "a");
|
|
set session transaction isolation level repeatable read;
|
|
begin;
|
|
select * from foo;
|
|
a b
|
|
1 a
|
|
replace into foo values (1,"abGARBAGE"), (2, "abGARBAGE");
|
|
replace into foo values (1,"ab"), (2, "ab");
|
|
set session transaction isolation level repeatable read;
|
|
begin;
|
|
select * from foo;
|
|
a b
|
|
1 ab
|
|
2 ab
|
|
replace into foo values (1,"abcGARBAGE"),(2,"abcGARBAGE"),(3, "abcGARBAGE");
|
|
replace into foo values (1,"abc"),(2,"abc"),(3, "abc");
|
|
set session transaction isolation level repeatable read;
|
|
begin;
|
|
select * from foo;
|
|
a b
|
|
1 abc
|
|
2 abc
|
|
3 abc
|
|
replace into foo values (1,"abcdGARBAGE"),(2,"abcdGARBAGE"),(3, "abcdGARBAGE"),(4, "abcdGARBAGE");
|
|
replace into foo values (1,"abcd"),(2,"abcd"),(3, "abcd"),(4, "abcd");
|
|
set session transaction isolation level repeatable read;
|
|
begin;
|
|
select * from foo;
|
|
a b
|
|
1 abcd
|
|
2 abcd
|
|
3 abcd
|
|
4 abcd
|
|
select * from foo;
|
|
a b
|
|
commit;
|
|
select * from foo;
|
|
a b
|
|
1 a
|
|
commit;
|
|
select * from foo;
|
|
a b
|
|
1 ab
|
|
2 ab
|
|
commit;
|
|
select * from foo;
|
|
a b
|
|
1 abc
|
|
2 abc
|
|
3 abc
|
|
commit;
|
|
select * from foo;
|
|
a b
|
|
1 abcd
|
|
2 abcd
|
|
3 abcd
|
|
4 abcd
|
|
commit;
|
|
select * from foo;
|
|
a b
|
|
1 abcd
|
|
2 abcd
|
|
3 abcd
|
|
4 abcd
|
|
replace into foo values (1,"1"),(2,"2"),(3,"3"),(4,"4");
|
|
select * from foo;
|
|
a b
|
|
1 1
|
|
2 2
|
|
3 3
|
|
4 4
|
|
set session transaction isolation level serializable;
|
|
DROP TABLE foo;
|