diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2016-02-10 00:20:23 +0100 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2016-02-10 00:20:23 +0100 |
commit | b436db98fe123f4b0c83df3532881b038f7d9a9d (patch) | |
tree | aa048f548d9037bd3eca6df0d415a8dd314e0ac8 /sql/threadpool_common.cc | |
parent | b3093073b1ec076ad7ef5ef8b8fca9022864a890 (diff) | |
download | mariadb-git-b436db98fe123f4b0c83df3532881b038f7d9a9d.tar.gz |
Fix compilation10.2-ssl
Diffstat (limited to 'sql/threadpool_common.cc')
-rw-r--r-- | sql/threadpool_common.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/threadpool_common.cc b/sql/threadpool_common.cc index c1a092dafb9..63622d4a5f0 100644 --- a/sql/threadpool_common.cc +++ b/sql/threadpool_common.cc @@ -261,6 +261,19 @@ end: } + +/* Dummy functions, do nothing */ + +static bool tp_init_new_connection_thread() +{ + return 0; +} + +static bool tp_end_thread(THD *, bool) +{ + return 0; +} + static scheduler_functions tp_scheduler_functions= { 0, // max_threads |