mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
e776ba7701
git-svn-id: file:///svn/mysql/tests/mysql-test@55041 c7de825b-a66e-492c-adef-691d508d4ae1
44 lines
1.4 KiB
Text
Executable file
44 lines
1.4 KiB
Text
Executable file
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
|
|
# Establish connection conn1 (user = root)
|
|
DROP TABLE IF EXISTS foo, foo_isam;
|
|
set session transaction isolation level repeatable read;
|
|
create table foo (a int, b int, c int, primary key (a), key (b))engine=TokUDB;
|
|
show create table foo;
|
|
Table Create Table
|
|
foo CREATE TABLE `foo` (
|
|
`a` int(11) NOT NULL DEFAULT '0',
|
|
`b` int(11) DEFAULT NULL,
|
|
`c` int(11) DEFAULT NULL,
|
|
PRIMARY KEY (`a`),
|
|
KEY `b` (`b`)
|
|
) ENGINE=TokuDB DEFAULT CHARSET=latin1
|
|
create table foo_isam (a int, b int, c int) engine=MyISAM;
|
|
insert into foo values (1,10,100),(2,20,200),(3,30,300),(4,40,400),(5,50,500),(6,60,600),(7,70,700),(8,80,800),(9,90,900);
|
|
begin;
|
|
select * from foo;
|
|
a b c
|
|
1 10 100
|
|
2 20 200
|
|
3 30 300
|
|
4 40 400
|
|
5 50 500
|
|
6 60 600
|
|
7 70 700
|
|
8 80 800
|
|
9 90 900
|
|
# should use key b
|
|
explain select * from foo where b=50;
|
|
id select_type table type possible_keys key key_len ref rows Extra
|
|
1 SIMPLE foo ref b b 5 const 1 Using where
|
|
# should grab a read lock on the main table on (5,50,500)
|
|
insert into foo_isam select * from foo where b=50;
|
|
# should get (5,50,500)
|
|
select * From foo_isam;
|
|
a b c
|
|
5 50 500
|
|
set session transaction isolation level repeatable read;
|
|
# should fail with lock timeout because of read lock grabbed earlier
|
|
replace into foo values (5, 1,1);
|
|
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
|
|
set session transaction isolation level serializable;
|
|
DROP TABLE foo, foo_isam;
|