diff options
author | Daniel Black <daniel@mariadb.org> | 2021-05-20 14:15:43 +1000 |
---|---|---|
committer | Daniel Black <daniel@mariadb.org> | 2021-06-01 13:53:16 +1000 |
commit | 5727d56260e66d9b9f2dee6783385c5928d4f3a3 (patch) | |
tree | 4070642e28c0024c35592b13fe0fa4970e0fb158 /sql/mysqld.h | |
parent | b118f92be6b8d7294f3b57f824559ced3dcccc6b (diff) | |
download | mariadb-git-5727d56260e66d9b9f2dee6783385c5928d4f3a3.tar.gz |
Change connection_count back to static
Code structual change only, just limiting
super global variables especially when the
counter under the THD structure should be used
in general.
Diffstat (limited to 'sql/mysqld.h')
-rw-r--r-- | sql/mysqld.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/mysqld.h b/sql/mysqld.h index 768b81d59fc..ff7060425cb 100644 --- a/sql/mysqld.h +++ b/sql/mysqld.h @@ -116,7 +116,6 @@ extern bool opt_ignore_builtin_innodb; extern my_bool opt_character_set_client_handshake; extern my_bool debug_assert_on_not_freed_memory; extern MYSQL_PLUGIN_IMPORT bool volatile abort_loop; -extern Atomic_counter<uint> connection_count; extern my_bool opt_safe_user_create; extern my_bool opt_safe_show_db, opt_local_infile, opt_myisam_use_mmap; extern my_bool opt_slave_compressed_protocol, use_temp_pool; |