summaryrefslogtreecommitdiff
path: root/sql/handler.h
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2013-01-15 17:46:46 +0100
committerSergei Golubchik <sergii@pisem.net>2013-01-15 17:46:46 +0100
commit750b9147fced7202b541be946e044eb739b20a03 (patch)
treecb378c2d311993254aec75d4d81a5f32a2dcb71d /sql/handler.h
parenta87eab6061068491ec9004ae54c46630619cb531 (diff)
downloadmariadb-git-750b9147fced7202b541be946e044eb739b20a03.tar.gz
remove thd_mark_as_hard_kill()
(because it's conceptually wrong. only the user can decide whether the kill is allowed to leave tables in the inconsistent state, storage engine has no say in that)
Diffstat (limited to 'sql/handler.h')
-rw-r--r--sql/handler.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/handler.h b/sql/handler.h
index e5da92b0d40..af5d7e6d606 100644
--- a/sql/handler.h
+++ b/sql/handler.h
@@ -868,7 +868,6 @@ struct handlerton
Tell handler that query has been killed.
hard_kill is set in case of HARD KILL (abort query even if
it may corrupt table).
- Return 1 if the handler wants to upgrade the kill to a hard kill
*/
void (*kill_query)(handlerton *hton, THD *thd, my_bool hard_kill);
/*