diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2019-05-12 02:55:57 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2019-05-21 17:55:09 +0400 |
commit | 7192d7b700cc624e91518a3200596ae1cd580e70 (patch) | |
tree | c2ca33b27b2a4f6f5bd31aea6efd376bc2b40a78 /sql/sql_connect.h | |
parent | c90c76980733054632f9a5d0cf4101491ed8926a (diff) | |
download | mariadb-git-7192d7b700cc624e91518a3200596ae1cd580e70.tar.gz |
Simplified away CONNECT::extra_port
Part of MDEV-19515 - Improve connect speed
Diffstat (limited to 'sql/sql_connect.h')
-rw-r--r-- | sql/sql_connect.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sql/sql_connect.h b/sql/sql_connect.h index d8805350bf2..a46fbdfac60 100644 --- a/sql/sql_connect.h +++ b/sql/sql_connect.h @@ -35,7 +35,6 @@ public: scheduler_functions *scheduler; my_thread_id thread_id; pthread_t real_id; - bool extra_port; /* Own variables */ bool thread_count_incremented; @@ -43,7 +42,6 @@ public: CONNECT() :vio(0), scheduler(thread_scheduler), thread_id(0), real_id(0), - extra_port(0), thread_count_incremented(0), prior_thr_create_utime(0) { }; |