summaryrefslogtreecommitdiff
path: root/include/mysql/plugin.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 /include/mysql/plugin.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 'include/mysql/plugin.h')
-rw-r--r--include/mysql/plugin.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/mysql/plugin.h b/include/mysql/plugin.h
index 7617f5968d9..d30abb190d0 100644
--- a/include/mysql/plugin.h
+++ b/include/mysql/plugin.h
@@ -642,18 +642,6 @@ int mysql_tmpfile(const char *prefix);
int thd_killed(const MYSQL_THD thd);
/**
- Increase level of kill ; Ensures that thd_killed() returns true.
-
- @param thd Thread connection handle
-
- @details
- Needed if storage engine wants to abort things because of a 'soft' (ie,
- safe) kill but still uses thd_killed() to check if it's killed.
-**/
-
-void thd_mark_as_hard_kill(MYSQL_THD thd);
-
-/**
Return the thread id of a user thread
@param thd user thread connection handle