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
fe60ebdc
Commit
fe60ebdc
authored
Nov 06, 2007
by
aelkin/elkin@koti.dsl.inet.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug#27571
non-deterministic tests refining. This particular patch tested on two archs.
parent
d9045a76
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
mysql-test/suite/binlog/t/binlog_killed.test
mysql-test/suite/binlog/t/binlog_killed.test
+9
-2
No files found.
mysql-test/suite/binlog/t/binlog_killed.test
View file @
fe60ebdc
...
...
@@ -218,11 +218,15 @@ set @b= 0;
send
update
t4
set
b
=
b
+
bug27563
(
b
);
connection
con1
;
let
$wait_condition
=
select
count
(
*
)
=
1
FROM
INFORMATION_SCHEMA
.
PROCESSLIST
where
state
=
'User lock'
;
source
include
/
wait_condition
.
inc
;
select
count
(
*
)
FROM
INFORMATION_SCHEMA
.
PROCESSLIST
where
state
=
'User lock'
;
--
replace_result
$ID
ID
eval
kill
query
$ID
;
connection
con2
;
--
error
0
,
ER_QUERY_INTERRUPTED
,
ER_SP_PROC_TABLE_CORRUPT
--
error
ER_QUERY_INTERRUPTED
reap
;
select
*
from
t4
order
by
b
/* must be (1,1), (1,2) */
;
select
@
b
/* must be 1 at the end of a stmt calling bug27563() */
;
...
...
@@ -261,11 +265,14 @@ set @b= 0;
send
delete
from
t4
where
b
=
bug27563
(
1
)
or
b
=
bug27563
(
2
);
connection
con1
;
let
$wait_condition
=
select
count
(
*
)
=
1
FROM
INFORMATION_SCHEMA
.
PROCESSLIST
where
state
=
'User lock'
;
source
include
/
wait_condition
.
inc
;
select
count
(
*
)
FROM
INFORMATION_SCHEMA
.
PROCESSLIST
where
state
=
'User lock'
;
--
replace_result
$ID
ID
eval
kill
query
$ID
;
connection
con2
;
--
error
0
,
ER_QUERY_INTERRUPTED
,
ER_SP_PROC_TABLE_CORRUPT
--
error
ER_QUERY_INTERRUPTED
reap
;
select
count
(
*
)
from
t4
/* must be 1 */
;
select
@
b
/* must be 1 at the end of a stmt calling bug27563() */
;
...
...
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