diff options
author | Mikael Ronström <mikael@dator9> | 2011-02-10 18:41:02 +0100 |
---|---|---|
committer | Mikael Ronström <mikael@dator9> | 2011-02-10 18:41:02 +0100 |
commit | 6d45d27cbc9c343736a97cafa504eb1998d8bd70 (patch) | |
tree | 3d00c93eab570455ce9d604cf9147e7425ceac47 /include | |
parent | e3f89e5dbac66b34db735ae44a21e6d489a7f28e (diff) | |
download | mariadb-git-6d45d27cbc9c343736a97cafa504eb1998d8bd70.tar.gz |
Simplify interface to connect methods in server
Diffstat (limited to 'include')
-rw-r--r-- | include/mysql/thread_pool_priv.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mysql/thread_pool_priv.h b/include/mysql/thread_pool_priv.h index 73e48cc33e7..555d5fb0e7b 100644 --- a/include/mysql/thread_pool_priv.h +++ b/include/mysql/thread_pool_priv.h @@ -34,7 +34,6 @@ */ #define MYSQL_SERVER 1 #include <sql_class.h> -#include <probes_mysql.h> #include <scheduler.h> #include <debug_sync.h> #include <sql_profile.h> @@ -55,9 +54,10 @@ bool do_command(THD *thd); ensure that the proper MySQL Server logic attached to these events is executed. */ -bool login_connection(THD *thd); -void prepare_new_connection_state(THD* thd); +bool thd_prepare_connection(THD *thd); +bool thd_is_connection_alive(THD *thd); void end_connection(THD *thd); +void mysql_audit_release(THD *thd); bool setup_connection_thread_globals(THD *thd); bool init_new_connection_handler_thread(); |