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
d9045a76
Commit
d9045a76
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 execution on some platforms.
parent
3f7bf588
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
mysql-test/suite/binlog/r/binlog_killed.result
mysql-test/suite/binlog/r/binlog_killed.result
+4
-1
mysql-test/suite/binlog/t/binlog_killed.test
mysql-test/suite/binlog/t/binlog_killed.test
+5
-3
No files found.
mysql-test/suite/binlog/r/binlog_killed.result
View file @
d9045a76
...
...
@@ -9,6 +9,9 @@ insert into t2 values (null, null), (null, get_lock("a", 10));
select @result /* must be zero either way */;
@result
0
select RELEASE_LOCK("a");
RELEASE_LOCK("a")
1
delete from t1;
delete from t2;
insert into t1 values (1,1),(2,2);
...
...
@@ -51,7 +54,7 @@ RETURNS int(11)
DETERMINISTIC
begin
if @b > 0 then
select get_lock("a",
1
0) into @a;
select get_lock("a",
2
0) into @a;
else
set @b= 1;
end if;
...
...
mysql-test/suite/binlog/t/binlog_killed.test
View file @
d9045a76
...
...
@@ -57,6 +57,8 @@ select @result /* must be zero either way */;
--
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
kill_query_calling_sp
.
binlog
connection
con1
;
select
RELEASE_LOCK
(
"a"
);
#
# bug#27571 asynchronous setting mysql_`query`::error and Query_log_e::error_code
...
...
@@ -192,7 +194,7 @@ RETURNS int(11)
DETERMINISTIC
begin
if
@
b
>
0
then
select
get_lock
(
"a"
,
1
0
)
into
@
a
;
select
get_lock
(
"a"
,
2
0
)
into
@
a
;
else
set
@
b
=
1
;
end
if
;
...
...
@@ -220,7 +222,7 @@ connection con1;
eval
kill
query
$ID
;
connection
con2
;
--
error
0
,
ER_QUERY_INTERRUPTED
--
error
0
,
ER_QUERY_INTERRUPTED
,
ER_SP_PROC_TABLE_CORRUPT
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() */
;
...
...
@@ -263,7 +265,7 @@ connection con1;
eval
kill
query
$ID
;
connection
con2
;
--
error
0
,
ER_QUERY_INTERRUPTED
--
error
0
,
ER_QUERY_INTERRUPTED
,
ER_SP_PROC_TABLE_CORRUPT
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