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 /sql/sql_connect.h | |
parent | e3f89e5dbac66b34db735ae44a21e6d489a7f28e (diff) | |
download | mariadb-git-6d45d27cbc9c343736a97cafa504eb1998d8bd70.tar.gz |
Simplify interface to connect methods in server
Diffstat (limited to 'sql/sql_connect.h')
-rw-r--r-- | sql/sql_connect.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/sql_connect.h b/sql/sql_connect.h index 666db4c6462..c0cb100c779 100644 --- a/sql/sql_connect.h +++ b/sql/sql_connect.h @@ -35,6 +35,8 @@ void time_out_user_resource_limits(THD *thd, USER_CONN *uc); void decrease_user_connections(USER_CONN *uc); void thd_init_client_charset(THD *thd, uint cs_number); bool setup_connection_thread_globals(THD *thd); +bool thd_prepare_connection(THD *thd); +bool thd_is_connection_alive(THD *thd); int check_user(THD *thd, enum enum_server_command command, const char *passwd, uint passwd_len, const char *db, |