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
63b4ce72
Commit
63b4ce72
authored
Dec 18, 2005
by
kent@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge
parents
16d66d2a
04cff0d0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
5 deletions
+7
-5
mysql-test/r/rpl000001.result
mysql-test/r/rpl000001.result
+1
-1
mysql-test/t/flush_read_lock_kill.test
mysql-test/t/flush_read_lock_kill.test
+1
-1
mysql-test/t/rpl000001.test
mysql-test/t/rpl000001.test
+1
-1
mysql-test/t/rpl_error_ignored_table.test
mysql-test/t/rpl_error_ignored_table.test
+1
-1
sql/sql_class.cc
sql/sql_class.cc
+3
-1
No files found.
mysql-test/r/rpl000001.result
View file @
63b4ce72
...
...
@@ -50,7 +50,7 @@ select (@id := id) - id from t2;
0
kill @id;
drop table t2;
ERROR 08S01: Server shutdown in progres
s
Got one of the listed error
s
set global sql_slave_skip_counter=1;
start slave;
select count(*) from t1;
...
...
mysql-test/t/flush_read_lock_kill.test
View file @
63b4ce72
...
...
@@ -42,7 +42,7 @@ connection con1;
# debug build running without our --debug=make_global..., will be
# error 0 (no error). The only important thing to test is that on
# debug builds with our --debug=make_global... we don't hang forever.
--
error
0
,
1053
--
error
0
,
1053
,
2013
reap
;
connection
con2
;
...
...
mysql-test/t/rpl000001.test
View file @
63b4ce72
...
...
@@ -92,7 +92,7 @@ kill @id;
# We don't drop t3 as this is a temporary table
drop
table
t2
;
connection
master
;
--
error
1053
--
error
1053
,
2013
reap
;
connection
slave
;
# The SQL slave thread should now have stopped because the query was killed on
...
...
mysql-test/t/rpl_error_ignored_table.test
View file @
63b4ce72
...
...
@@ -45,7 +45,7 @@ select (@id := id) - id from t3;
kill
@
id
;
drop
table
t2
,
t3
;
connection
master
;
--
error
0
,
1053
--
error
0
,
1053
,
2013
reap
;
connection
master1
;
--
replace_column
2
# 5 #
...
...
sql/sql_class.cc
View file @
63b4ce72
...
...
@@ -473,10 +473,12 @@ void THD::awake(THD::killed_state state_to_set)
killed
=
state_to_set
;
if
(
state_to_set
!=
THD
::
KILL_QUERY
)
{
thr_alarm_kill
(
real_id
);
#ifdef SIGNAL_WITH_VIO_CLOSE
close_active_vio
();
close_active_vio
();
#endif
}
if
(
mysys_var
)
{
pthread_mutex_lock
(
&
mysys_var
->
mutex
);
...
...
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