mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Convert innodb-consistent.test to Unix EOL
This commit is contained in:
@ -1,58 +1,58 @@
|
|||||||
-- 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;
|
||||||
|
Reference in New Issue
Block a user