Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
1d94508e
Commit
1d94508e
authored
Nov 17, 2009
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/zip: Set svn:eol-style on mysql-test files.
parent
b0ed43b0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
59 deletions
+59
-59
mysql-test/innodb-consistent-master.opt
mysql-test/innodb-consistent-master.opt
+1
-1
mysql-test/innodb-consistent.test
mysql-test/innodb-consistent.test
+58
-58
No files found.
mysql-test/innodb-consistent-master.opt
View file @
1d94508e
--innodb_lock_wait_timeout=2
--innodb_lock_wait_timeout=2
mysql-test/innodb-consistent.test
View file @
1d94508e
--
source
include
/
not_embedded
.
inc
--
source
include
/
have_innodb
.
inc
--
disable_warnings
drop
table
if
exists
t1
;
--
enable_warnings
# REPLACE INTO ... SELECT and INSERT INTO ... SELECT should do
# a consistent read of the source table.
connect
(
a
,
localhost
,
root
,,);
connect
(
b
,
localhost
,
root
,,);
connection
a
;
set
session
transaction
isolation
level
read
committed
;
create
table
t1
(
a
int
not
null
)
engine
=
innodb
DEFAULT
CHARSET
=
latin1
;
create
table
t2
like
t1
;
insert
into
t2
values
(
1
),(
2
),(
3
),(
4
),(
5
),(
6
),(
7
);
set
autocommit
=
0
;
# REPLACE INTO ... SELECT case
begin
;
# this should not result in any locks on t2.
replace
into
t1
select
*
from
t2
;
connection
b
;
set
session
transaction
isolation
level
read
committed
;
set
autocommit
=
0
;
# should not cuase a lock wait.
delete
from
t2
where
a
=
5
;
commit
;
delete
from
t2
;
commit
;
connection
a
;
commit
;
# INSERT INTO ... SELECT case
begin
;
# this should not result in any locks on t2.
insert
into
t1
select
*
from
t2
;
connection
b
;
set
session
transaction
isolation
level
read
committed
;
set
autocommit
=
0
;
# should not cuase a lock wait.
delete
from
t2
where
a
=
5
;
commit
;
delete
from
t2
;
commit
;
connection
a
;
commit
;
select
*
from
t1
;
drop
table
t1
;
drop
table
t2
;
connection
default
;
disconnect
a
;
disconnect
b
;
--
source
include
/
not_embedded
.
inc
--
source
include
/
have_innodb
.
inc
--
disable_warnings
drop
table
if
exists
t1
;
--
enable_warnings
# REPLACE INTO ... SELECT and INSERT INTO ... SELECT should do
# a consistent read of the source table.
connect
(
a
,
localhost
,
root
,,);
connect
(
b
,
localhost
,
root
,,);
connection
a
;
set
session
transaction
isolation
level
read
committed
;
create
table
t1
(
a
int
not
null
)
engine
=
innodb
DEFAULT
CHARSET
=
latin1
;
create
table
t2
like
t1
;
insert
into
t2
values
(
1
),(
2
),(
3
),(
4
),(
5
),(
6
),(
7
);
set
autocommit
=
0
;
# REPLACE INTO ... SELECT case
begin
;
# this should not result in any locks on t2.
replace
into
t1
select
*
from
t2
;
connection
b
;
set
session
transaction
isolation
level
read
committed
;
set
autocommit
=
0
;
# should not cuase a lock wait.
delete
from
t2
where
a
=
5
;
commit
;
delete
from
t2
;
commit
;
connection
a
;
commit
;
# INSERT INTO ... SELECT case
begin
;
# this should not result in any locks on t2.
insert
into
t1
select
*
from
t2
;
connection
b
;
set
session
transaction
isolation
level
read
committed
;
set
autocommit
=
0
;
# should not cuase a lock wait.
delete
from
t2
where
a
=
5
;
commit
;
delete
from
t2
;
commit
;
connection
a
;
commit
;
select
*
from
t1
;
drop
table
t1
;
drop
table
t2
;
connection
default
;
disconnect
a
;
disconnect
b
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment