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
3f0d0d06
Commit
3f0d0d06
authored
Oct 20, 2009
by
Tatiana A. Nurnberg
Browse files
Options
Browse Files
Download
Plain Diff
manual merge of 28141
parents
ead175bb
5ef63a4f
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
39 additions
and
22 deletions
+39
-22
client/mysql.cc
client/mysql.cc
+20
-6
mysql-test/extra/rpl_tests/rpl_stm_000001.test
mysql-test/extra/rpl_tests/rpl_stm_000001.test
+1
-1
mysql-test/suite/rpl/t/rpl_err_ignoredtable.test
mysql-test/suite/rpl/t/rpl_err_ignoredtable.test
+1
-1
mysql-test/t/flush_read_lock_kill.test
mysql-test/t/flush_read_lock_kill.test
+1
-1
mysql-test/t/kill.test
mysql-test/t/kill.test
+1
-1
sql/records.cc
sql/records.cc
+9
-12
sql/sql_class.h
sql/sql_class.h
+6
-0
No files found.
client/mysql.cc
View file @
3f0d0d06
...
...
@@ -1280,21 +1280,35 @@ sig_handler handle_sigint(int sig)
MYSQL
*
kill_mysql
=
NULL
;
/* terminate if no query being executed, or we already tried interrupting */
if
(
!
executing_query
||
interrupted_query
)
/* terminate if no query being executed, or we already tried interrupting */
if
(
!
executing_query
||
(
interrupted_query
==
2
))
{
tee_fprintf
(
stdout
,
"Ctrl-C -- exit!
\n
"
);
goto
err
;
}
kill_mysql
=
mysql_init
(
kill_mysql
);
if
(
!
mysql_real_connect
(
kill_mysql
,
current_host
,
current_user
,
opt_password
,
""
,
opt_mysql_port
,
opt_mysql_unix_port
,
0
))
{
tee_fprintf
(
stdout
,
"Ctrl-C -- sorry, cannot connect to server to kill query, giving up ...
\n
"
);
goto
err
;
}
interrupted_query
++
;
/* mysqld < 5 does not understand KILL QUERY, skip to KILL CONNECTION */
if
((
interrupted_query
==
1
)
&&
(
mysql_get_server_version
(
&
mysql
)
<
50000
))
interrupted_query
=
2
;
/* kill_buffer is always big enough because max length of %lu is 15 */
sprintf
(
kill_buffer
,
"KILL /*!50000 QUERY */ %lu"
,
mysql_thread_id
(
&
mysql
));
mysql_real_query
(
kill_mysql
,
kill_buffer
,
strlen
(
kill_buffer
));
sprintf
(
kill_buffer
,
"KILL %s%lu"
,
(
interrupted_query
==
1
)
?
"QUERY "
:
""
,
mysql_thread_id
(
&
mysql
));
tee_fprintf
(
stdout
,
"Ctrl-C -- sending
\"
%s
\"
to server ...
\n
"
,
kill_buffer
);
mysql_real_query
(
kill_mysql
,
kill_buffer
,
(
uint
)
strlen
(
kill_buffer
));
mysql_close
(
kill_mysql
);
tee_fprintf
(
stdout
,
"Query aborted by Ctrl+C
\n
"
);
interrupted_query
=
1
;
tee_fprintf
(
stdout
,
"Ctrl-C -- query aborted.
\n
"
);
return
;
...
...
mysql-test/extra/rpl_tests/rpl_stm_000001.test
View file @
3f0d0d06
...
...
@@ -93,7 +93,7 @@ kill @id;
# We don't drop t3 as this is a temporary table
drop
table
t2
;
connection
master
;
--
error
1
053
,
2013
--
error
1
317
,
2013
reap
;
connection
slave
;
# The SQL slave thread should now have stopped because the query was killed on
...
...
mysql-test/suite/rpl/t/rpl_err_ignoredtable.test
View file @
3f0d0d06
...
...
@@ -50,7 +50,7 @@ kill @id;
drop
table
t2
,
t3
;
insert
into
t4
values
(
3
),(
4
);
connection
master
;
--
error
0
,
1
053
,
2013
--
error
0
,
1
317
,
2013
reap
;
connection
master1
;
save_master_pos
;
...
...
mysql-test/t/flush_read_lock_kill.test
View file @
3f0d0d06
...
...
@@ -57,7 +57,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
,
1
053
,
2013
--
error
0
,
1
317
,
2013
reap
;
connection
con2
;
...
...
mysql-test/t/kill.test
View file @
3f0d0d06
...
...
@@ -97,7 +97,7 @@ select ((@id := kill_id) - kill_id) from t3;
kill
@
id
;
connection
conn1
;
--
error
1
053
,
2013
--
error
1
317
,
2013
reap
;
connection
default
;
...
...
sql/records.cc
View file @
3f0d0d06
...
...
@@ -57,6 +57,7 @@ void init_read_record_idx(READ_RECORD *info, THD *thd, TABLE *table,
{
empty_record
(
table
);
bzero
((
char
*
)
info
,
sizeof
(
*
info
));
info
->
thd
=
thd
;
info
->
table
=
table
;
info
->
file
=
table
->
file
;
info
->
record
=
table
->
record
[
0
];
...
...
@@ -292,6 +293,12 @@ void end_read_record(READ_RECORD *info)
static
int
rr_handle_error
(
READ_RECORD
*
info
,
int
error
)
{
if
(
info
->
thd
->
killed
)
{
info
->
thd
->
send_kill_message
();
return
1
;
}
if
(
error
==
HA_ERR_END_OF_FILE
)
error
=
-
1
;
else
...
...
@@ -312,12 +319,7 @@ static int rr_quick(READ_RECORD *info)
int
tmp
;
while
((
tmp
=
info
->
select
->
quick
->
get_next
()))
{
if
(
info
->
thd
->
killed
)
{
my_error
(
ER_SERVER_SHUTDOWN
,
MYF
(
0
));
return
1
;
}
if
(
tmp
!=
HA_ERR_RECORD_DELETED
)
if
(
info
->
thd
->
killed
||
(
tmp
!=
HA_ERR_RECORD_DELETED
))
{
tmp
=
rr_handle_error
(
info
,
tmp
);
break
;
...
...
@@ -380,16 +382,11 @@ int rr_sequential(READ_RECORD *info)
int
tmp
;
while
((
tmp
=
info
->
file
->
rnd_next
(
info
->
record
)))
{
if
(
info
->
thd
->
killed
)
{
info
->
thd
->
send_kill_message
();
return
1
;
}
/*
rnd_next can return RECORD_DELETED for MyISAM when one thread is
reading and another deleting without locks.
*/
if
(
tmp
!=
HA_ERR_RECORD_DELETED
)
if
(
info
->
thd
->
killed
||
(
tmp
!=
HA_ERR_RECORD_DELETED
)
)
{
tmp
=
rr_handle_error
(
info
,
tmp
);
break
;
...
...
sql/sql_class.h
View file @
3f0d0d06
...
...
@@ -93,6 +93,8 @@ extern char internal_table_name[2];
extern
char
empty_c_string
[
1
];
extern
MYSQL_PLUGIN_IMPORT
const
char
**
errmesg
;
extern
bool
volatile
shutdown_in_progress
;
#define TC_LOG_PAGE_SIZE 8192
#define TC_LOG_MIN_SIZE (3*TC_LOG_PAGE_SIZE)
...
...
@@ -2140,7 +2142,11 @@ public:
{
int
err
=
killed_errno
();
if
(
err
)
{
if
((
err
==
KILL_CONNECTION
)
&&
!
shutdown_in_progress
)
err
=
KILL_QUERY
;
my_message
(
err
,
ER
(
err
),
MYF
(
0
));
}
}
/* return TRUE if we will abort query if we make a warning now */
inline
bool
really_abort_on_warning
()
...
...
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