|
|
|
@ -300,7 +300,7 @@ static bool lower_case_table_names_used= 0; |
|
|
|
static bool volatile select_thread_in_use, signal_thread_in_use; |
|
|
|
static bool volatile ready_to_exit; |
|
|
|
static my_bool opt_debugging= 0, opt_external_locking= 0, opt_console= 0; |
|
|
|
static my_bool opt_bdb, opt_isam, opt_ndbcluster; |
|
|
|
static my_bool opt_bdb, opt_isam, opt_ndbcluster, opt_merge; |
|
|
|
static my_bool opt_short_log_format= 0; |
|
|
|
static uint kill_cached_threads, wake_thread; |
|
|
|
static ulong killed_threads, thread_created; |
|
|
|
@ -4648,7 +4648,8 @@ enum options_mysqld |
|
|
|
OPT_OLD_STYLE_USER_LIMITS, |
|
|
|
OPT_LOG_SLOW_ADMIN_STATEMENTS, |
|
|
|
OPT_TABLE_LOCK_WAIT_TIMEOUT, |
|
|
|
OPT_PORT_OPEN_TIMEOUT |
|
|
|
OPT_PORT_OPEN_TIMEOUT, |
|
|
|
OPT_MERGE |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
@ -5101,6 +5102,9 @@ master-ssl", |
|
|
|
#endif /* HAVE_REPLICATION */
|
|
|
|
{"memlock", OPT_MEMLOCK, "Lock mysqld in memory.", (gptr*) &locked_in_memory, |
|
|
|
(gptr*) &locked_in_memory, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0}, |
|
|
|
{"merge", OPT_MERGE, "Enable Merge storage engine. Disable with \
|
|
|
|
--skip-merge.", |
|
|
|
(gptr*) &opt_merge, (gptr*) &opt_merge, 0, GET_BOOL, NO_ARG, 1, 0, 0, 0, 0}, |
|
|
|
{"myisam-recover", OPT_MYISAM_RECOVER, |
|
|
|
"Syntax: myisam-recover[=option[,option...]], where option can be DEFAULT, BACKUP, FORCE or QUICK.", |
|
|
|
(gptr*) &myisam_recover_options_str, (gptr*) &myisam_recover_options_str, 0, |
|
|
|
|