Commit 1d94508e authored by marko's avatar marko

branches/zip: Set svn:eol-style on mysql-test files.

parent b0ed43b0
--innodb_lock_wait_timeout=2 --innodb_lock_wait_timeout=2
-- source include/not_embedded.inc -- source include/not_embedded.inc
-- source include/have_innodb.inc -- source include/have_innodb.inc
--disable_warnings --disable_warnings
drop table if exists t1; drop table if exists t1;
--enable_warnings --enable_warnings
# REPLACE INTO ... SELECT and INSERT INTO ... SELECT should do # REPLACE INTO ... SELECT and INSERT INTO ... SELECT should do
# a consistent read of the source table. # a consistent read of the source table.
connect (a,localhost,root,,); connect (a,localhost,root,,);
connect (b,localhost,root,,); connect (b,localhost,root,,);
connection a; connection a;
set session transaction isolation level read committed; set session transaction isolation level read committed;
create table t1(a int not null) engine=innodb DEFAULT CHARSET=latin1; create table t1(a int not null) engine=innodb DEFAULT CHARSET=latin1;
create table t2 like t1; create table t2 like t1;
insert into t2 values (1),(2),(3),(4),(5),(6),(7); insert into t2 values (1),(2),(3),(4),(5),(6),(7);
set autocommit=0; set autocommit=0;
# REPLACE INTO ... SELECT case # REPLACE INTO ... SELECT case
begin; begin;
# this should not result in any locks on t2. # this should not result in any locks on t2.
replace into t1 select * from t2; replace into t1 select * from t2;
connection b; connection b;
set session transaction isolation level read committed; set session transaction isolation level read committed;
set autocommit=0; set autocommit=0;
# should not cuase a lock wait. # should not cuase a lock wait.
delete from t2 where a=5; delete from t2 where a=5;
commit; commit;
delete from t2; delete from t2;
commit; commit;
connection a; connection a;
commit; commit;
# INSERT INTO ... SELECT case # INSERT INTO ... SELECT case
begin; begin;
# this should not result in any locks on t2. # this should not result in any locks on t2.
insert into t1 select * from t2; insert into t1 select * from t2;
connection b; connection b;
set session transaction isolation level read committed; set session transaction isolation level read committed;
set autocommit=0; set autocommit=0;
# should not cuase a lock wait. # should not cuase a lock wait.
delete from t2 where a=5; delete from t2 where a=5;
commit; commit;
delete from t2; delete from t2;
commit; commit;
connection a; connection a;
commit; commit;
select * from t1; select * from t1;
drop table t1; drop table t1;
drop table t2; drop table t2;
connection default; connection default;
disconnect a; disconnect a;
disconnect b; disconnect b;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment