diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-10-08 00:45:41 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-10-08 00:45:41 +0200 |
commit | d3677c872f2d7d807dffbf8cd4aaa8fb6d7723a4 (patch) | |
tree | 9d770e030dacfeb5d26e48076dbd21c7229ae485 /sql | |
parent | 7e6d4bba0c04ebddac1de779e0bdfc5552aa5b8f (diff) | |
download | mariadb-git-d3677c872f2d7d807dffbf8cd4aaa8fb6d7723a4.tar.gz |
jemalloc compatibility
Diffstat (limited to 'sql')
-rw-r--r-- | sql/mysqld.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc index 09b0b0baf28..52b56f121c5 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -363,7 +363,8 @@ static DYNAMIC_ARRAY all_options; /* Global variables */ bool opt_bin_log, opt_bin_log_used=0, opt_ignore_builtin_innodb= 0; -my_bool opt_log, opt_slow_log, debug_assert_if_crashed_table= 0, opt_help= 0, opt_abort; +my_bool opt_log, opt_slow_log, debug_assert_if_crashed_table= 0, opt_help= 0; +static my_bool opt_abort; ulonglong log_output_options; my_bool opt_userstat_running; my_bool opt_log_queries_not_using_indexes= 0; |