summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@mariadb.com>2020-03-17 00:56:49 +0100
committerVladislav Vaintroub <wlad@mariadb.com>2020-03-17 00:56:49 +0100
commit96b472c0ae798da43ca9f4735dfafe35b2f38fda (patch)
tree03f6f39f39579abe392e8fc66d61ccf1ffef884d
parent097e2f9d0aa0dc7f1c4a7cff52260944db28e3c8 (diff)
downloadmariadb-git-96b472c0ae798da43ca9f4735dfafe35b2f38fda.tar.gz
MDEV-18439 Windows builds should have core_file=1 by default
It did not work, eventhough the default for Windows was changed to 1 for the corresponding system variable. This be because test_flags was zeroed mysql_init_variables. The patch fixes this glitch.
-rw-r--r--sql/mysqld.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc
index 439437d6541..85f7e3a5d32 100644
--- a/sql/mysqld.cc
+++ b/sql/mysqld.cc
@@ -8038,7 +8038,7 @@ static int mysql_init_variables(void)
disable_log_notes= 0;
mqh_used= 0;
cleanup_done= 0;
- test_flags= select_errors= dropping_tables= ha_open_options=0;
+ select_errors= dropping_tables= ha_open_options=0;
thread_count= kill_cached_threads= wake_thread= 0;
slave_open_temp_tables= 0;
cached_thread_count= 0;