mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Fixed several boolean type options used in my_long_options[].
Some options were declared as 'bool', but since those are being handled in my_getopt.c, bool can be machine dependent. To make sure it works in all circumstances, the type should be my_bool for C (not C++) programs. sql/mysql_priv.h: Fixed some bools to my_bools. sql/mysqld.cc: Changed several bools to my_bools. sql/slave.cc: Changed bool to my_bool. sql/slave.h: Changed bool to my_bool.
This commit is contained in:
@ -1155,12 +1155,13 @@ extern my_bool relay_log_purge, opt_innodb_safe_binlog, opt_innodb;
|
|||||||
extern uint test_flags,select_errors,ha_open_options;
|
extern uint test_flags,select_errors,ha_open_options;
|
||||||
extern uint protocol_version, mysqld_port, dropping_tables;
|
extern uint protocol_version, mysqld_port, dropping_tables;
|
||||||
extern uint delay_key_write_options, lower_case_table_names;
|
extern uint delay_key_write_options, lower_case_table_names;
|
||||||
extern bool opt_endinfo, using_udf_functions, locked_in_memory;
|
extern bool opt_endinfo, using_udf_functions;
|
||||||
|
extern my_bool locked_in_memory;
|
||||||
extern bool opt_using_transactions, mysqld_embedded;
|
extern bool opt_using_transactions, mysqld_embedded;
|
||||||
extern bool using_update_log, opt_large_files, server_id_supplied;
|
extern bool using_update_log, opt_large_files, server_id_supplied;
|
||||||
extern bool opt_log, opt_update_log, opt_bin_log, opt_slow_log, opt_error_log;
|
extern bool opt_log, opt_update_log, opt_bin_log, opt_slow_log, opt_error_log;
|
||||||
extern bool opt_disable_networking, opt_skip_show_db;
|
extern bool opt_disable_networking, opt_skip_show_db;
|
||||||
extern bool opt_character_set_client_handshake;
|
extern my_bool opt_character_set_client_handshake;
|
||||||
extern bool volatile abort_loop, shutdown_in_progress, grant_option;
|
extern bool volatile abort_loop, shutdown_in_progress, grant_option;
|
||||||
extern bool mysql_proc_table_exists;
|
extern bool mysql_proc_table_exists;
|
||||||
extern uint volatile thread_count, thread_running, global_read_lock;
|
extern uint volatile thread_count, thread_running, global_read_lock;
|
||||||
|
@ -294,7 +294,7 @@ bool opt_large_files= sizeof(my_off_t) > 4;
|
|||||||
/*
|
/*
|
||||||
Used with --help for detailed option
|
Used with --help for detailed option
|
||||||
*/
|
*/
|
||||||
static bool opt_help= 0, opt_verbose= 0;
|
static my_bool opt_help= 0, opt_verbose= 0;
|
||||||
|
|
||||||
arg_cmp_func Arg_comparator::comparator_matrix[5][2] =
|
arg_cmp_func Arg_comparator::comparator_matrix[5][2] =
|
||||||
{{&Arg_comparator::compare_string, &Arg_comparator::compare_e_string},
|
{{&Arg_comparator::compare_string, &Arg_comparator::compare_e_string},
|
||||||
@ -338,9 +338,10 @@ static my_bool opt_sync_bdb_logs;
|
|||||||
bool opt_log, opt_update_log, opt_bin_log, opt_slow_log;
|
bool opt_log, opt_update_log, opt_bin_log, opt_slow_log;
|
||||||
bool opt_error_log= IF_WIN(1,0);
|
bool opt_error_log= IF_WIN(1,0);
|
||||||
bool opt_disable_networking=0, opt_skip_show_db=0;
|
bool opt_disable_networking=0, opt_skip_show_db=0;
|
||||||
bool opt_character_set_client_handshake= 1;
|
my_bool opt_character_set_client_handshake= 1;
|
||||||
bool server_id_supplied = 0;
|
bool server_id_supplied = 0;
|
||||||
bool opt_endinfo,using_udf_functions, locked_in_memory;
|
bool opt_endinfo,using_udf_functions;
|
||||||
|
my_bool locked_in_memory;
|
||||||
bool opt_using_transactions, using_update_log;
|
bool opt_using_transactions, using_update_log;
|
||||||
bool volatile abort_loop;
|
bool volatile abort_loop;
|
||||||
bool volatile shutdown_in_progress, grant_option;
|
bool volatile shutdown_in_progress, grant_option;
|
||||||
@ -572,7 +573,7 @@ Query_cache query_cache;
|
|||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_SMEM
|
#ifdef HAVE_SMEM
|
||||||
char *shared_memory_base_name= default_shared_memory_base_name;
|
char *shared_memory_base_name= default_shared_memory_base_name;
|
||||||
bool opt_enable_shared_memory;
|
my_bool opt_enable_shared_memory;
|
||||||
HANDLE smem_event_connect_request= 0;
|
HANDLE smem_event_connect_request= 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -40,7 +40,8 @@ HASH replicate_do_table, replicate_ignore_table;
|
|||||||
DYNAMIC_ARRAY replicate_wild_do_table, replicate_wild_ignore_table;
|
DYNAMIC_ARRAY replicate_wild_do_table, replicate_wild_ignore_table;
|
||||||
bool do_table_inited = 0, ignore_table_inited = 0;
|
bool do_table_inited = 0, ignore_table_inited = 0;
|
||||||
bool wild_do_table_inited = 0, wild_ignore_table_inited = 0;
|
bool wild_do_table_inited = 0, wild_ignore_table_inited = 0;
|
||||||
bool table_rules_on= 0, replicate_same_server_id;
|
bool table_rules_on= 0;
|
||||||
|
my_bool replicate_same_server_id;
|
||||||
ulonglong relay_log_space_limit = 0;
|
ulonglong relay_log_space_limit = 0;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -581,7 +581,8 @@ extern HASH replicate_do_table, replicate_ignore_table;
|
|||||||
extern DYNAMIC_ARRAY replicate_wild_do_table, replicate_wild_ignore_table;
|
extern DYNAMIC_ARRAY replicate_wild_do_table, replicate_wild_ignore_table;
|
||||||
extern bool do_table_inited, ignore_table_inited,
|
extern bool do_table_inited, ignore_table_inited,
|
||||||
wild_do_table_inited, wild_ignore_table_inited;
|
wild_do_table_inited, wild_ignore_table_inited;
|
||||||
extern bool table_rules_on, replicate_same_server_id;
|
extern bool table_rules_on;
|
||||||
|
extern my_bool replicate_same_server_id;
|
||||||
|
|
||||||
extern int disconnect_slave_event_count, abort_slave_event_count ;
|
extern int disconnect_slave_event_count, abort_slave_event_count ;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user