97
97
static int check_log_update(THD *thd, set_var *var);
98
98
static bool set_log_update(THD *thd, set_var *var);
99
99
static int check_pseudo_thread_id(THD *thd, set_var *var);
100
void fix_binlog_format_after_update(THD *thd, enum_var_type type);
101
100
static void fix_low_priority_updates(THD *thd, enum_var_type type);
102
101
static int check_tx_isolation(THD *thd, set_var *var);
103
102
static void fix_tx_isolation(THD *thd, enum_var_type type);
708
static bool sys_update_init_connect(THD *thd, set_var *var)
707
static bool sys_update_init_connect(THD *thd __attribute__((__unused__)), set_var *var)
710
709
return update_sys_var_str(&sys_init_connect, &LOCK_sys_init_connect, var);
714
static void sys_default_init_connect(THD* thd, enum_var_type type)
713
static void sys_default_init_connect(THD* thd __attribute__((__unused__)),
714
enum_var_type type __attribute__((__unused__)))
716
716
update_sys_var_str(&sys_init_connect, &LOCK_sys_init_connect, 0);
720
static bool sys_update_init_slave(THD *thd, set_var *var)
720
static bool sys_update_init_slave(THD *thd __attribute__((__unused__)),
722
723
return update_sys_var_str(&sys_init_slave, &LOCK_sys_init_slave, var);
726
static void sys_default_init_slave(THD* thd, enum_var_type type)
727
static void sys_default_init_slave(THD* thd __attribute__((__unused__)),
728
enum_var_type type __attribute__((__unused__)))
728
730
update_sys_var_str(&sys_init_slave, &LOCK_sys_init_slave, 0);
797
800
static void fix_completion_type(THD *thd __attribute__((unused)),
798
801
enum_var_type type __attribute__((unused))) {}
800
static int check_completion_type(THD *thd, set_var *var)
803
static int check_completion_type(THD *thd __attribute__((__unused__)),
802
806
longlong val= var->value->val_int();
803
807
if (val < 0 || val > 2)
846
850
#endif /* HAVE_REPLICATION */
849
extern void fix_delay_key_write(THD *thd, enum_var_type type)
853
extern void fix_delay_key_write(THD *thd __attribute__((__unused__)),
854
enum_var_type type __attribute__((__unused__)))
851
856
switch ((enum_delay_key_write) delay_key_write_options) {
852
857
case DELAY_KEY_WRITE_NONE:
865
bool sys_var_set::update(THD *thd, set_var *var)
870
bool sys_var_set::update(THD *thd __attribute__((__unused__)),
867
873
*value= var->save_result.ulong_value;
871
uchar *sys_var_set::value_ptr(THD *thd, enum_var_type type,
877
uchar *sys_var_set::value_ptr(THD *thd,
878
enum_var_type type __attribute__((__unused__)),
879
LEX_STRING *base __attribute__((__unused__)))
875
882
String tmp(buff, sizeof(buff), &my_charset_latin1);
892
899
return (uchar*) thd->strmake(tmp.ptr(), length);
895
void sys_var_set_slave_mode::set_default(THD *thd, enum_var_type type)
902
void sys_var_set_slave_mode::set_default(THD *thd __attribute__((__unused__)),
903
enum_var_type type __attribute__((__unused__)))
897
905
slave_exec_mode_options= 0;
898
906
bit_do_set(slave_exec_mode_options, SLAVE_EXEC_MODE_STRICT);
974
void fix_binlog_format_after_update(THD *thd, enum_var_type type)
982
void fix_binlog_format_after_update(THD *thd,
983
enum_var_type type __attribute__((__unused__)))
976
985
thd->reset_current_stmt_binlog_row_based();
980
static void fix_max_binlog_size(THD *thd, enum_var_type type)
989
static void fix_max_binlog_size(THD *thd __attribute__((__unused__)),
990
enum_var_type type __attribute__((__unused__)))
982
992
DBUG_ENTER("fix_max_binlog_size");
983
993
DBUG_PRINT("info",("max_binlog_size=%lu max_relay_log_size=%lu",
990
1000
DBUG_VOID_RETURN;
993
static void fix_max_relay_log_size(THD *thd, enum_var_type type)
1003
static void fix_max_relay_log_size(THD *thd __attribute__((__unused__)),
1004
enum_var_type type __attribute__((__unused__)))
995
1006
DBUG_ENTER("fix_max_relay_log_size");
996
1007
DBUG_PRINT("info",("max_binlog_size=%lu max_relay_log_size=%lu",
1139
void sys_var_ulonglong_ptr::set_default(THD *thd, enum_var_type type)
1152
void sys_var_ulonglong_ptr::set_default(THD *thd __attribute__((__unused__)),
1153
enum_var_type type __attribute__((__unused__)))
1141
1155
my_bool not_used;
1142
1156
pthread_mutex_lock(&LOCK_global_system_variables);
1149
bool sys_var_bool_ptr::update(THD *thd, set_var *var)
1163
bool sys_var_bool_ptr::update(THD *thd __attribute__((__unused__)), set_var *var)
1151
1165
*value= (my_bool) var->save_result.ulong_value;
1156
void sys_var_bool_ptr::set_default(THD *thd, enum_var_type type)
1170
void sys_var_bool_ptr::set_default(THD *thd __attribute__((__unused__)), enum_var_type type __attribute__((__unused__)))
1158
1172
*value= (my_bool) option_limits->def_value;
1162
bool sys_var_enum::update(THD *thd, set_var *var)
1176
bool sys_var_enum::update(THD *thd __attribute__((__unused__)), set_var *var)
1164
1178
*value= (uint) var->save_result.ulong_value;
1169
uchar *sys_var_enum::value_ptr(THD *thd, enum_var_type type, LEX_STRING *base)
1183
uchar *sys_var_enum::value_ptr(THD *thd __attribute__((__unused__)),
1184
enum_var_type type __attribute__((__unused__)),
1185
LEX_STRING *base __attribute__((__unused__)))
1171
1187
return (uchar*) enum_names->type_names[*value];
1175
uchar *sys_var_enum_const::value_ptr(THD *thd, enum_var_type type,
1191
uchar *sys_var_enum_const::value_ptr(THD *thd __attribute__((__unused__)),
1192
enum_var_type type __attribute__((__unused__)),
1193
LEX_STRING *base __attribute__((__unused__)))
1178
1195
return (uchar*) enum_names->type_names[global_system_variables.*offset];
1187
1204
bool sys_var_thd_ulong::update(THD *thd, set_var *var)
1189
1206
ulonglong tmp= var->save_result.ulonglong_value;
1191
1208
/* Don't use bigger value than given with --maximum-variable-name=.. */
1192
1209
if ((ulong) tmp > max_system_variables.*offset)
1194
1211
throw_bounds_warning(thd, TRUE, TRUE, name, (longlong) tmp);
1195
1212
tmp= max_system_variables.*offset;
1198
1215
if (option_limits)
1199
1216
tmp= (ulong) fix_unsigned(thd, tmp, option_limits);
1200
1217
#if SIZEOF_LONG < SIZEOF_LONG_LONG
1204
1221
throw_bounds_warning(thd, TRUE, TRUE, name, (longlong) var->save_result.ulonglong_value);
1208
1225
if (var->type == OPT_GLOBAL)
1209
global_system_variables.*offset= (ulong) tmp;
1211
thd->variables.*offset= (ulong) tmp;
1217
void sys_var_thd_ulong::set_default(THD *thd, enum_var_type type)
1219
if (type == OPT_GLOBAL)
1222
/* We will not come here if option_limits is not set */
1223
global_system_variables.*offset=
1224
(ulong) getopt_ull_limit_value((ulong) option_limits->def_value,
1225
option_limits, ¬_used);
1228
thd->variables.*offset= global_system_variables.*offset;
1226
global_system_variables.*offset= (ulong) tmp;
1228
thd->variables.*offset= (ulong) tmp;
1234
void sys_var_thd_ulong::set_default(THD *thd, enum_var_type type)
1236
if (type == OPT_GLOBAL)
1239
/* We will not come here if option_limits is not set */
1240
global_system_variables.*offset=
1241
(ulong) getopt_ull_limit_value((ulong) option_limits->def_value,
1242
option_limits, ¬_used);
1245
thd->variables.*offset= global_system_variables.*offset;
1232
1249
uchar *sys_var_thd_ulong::value_ptr(THD *thd, enum_var_type type,
1250
LEX_STRING *base __attribute__((__unused__)))
1235
1252
if (type == OPT_GLOBAL)
1236
1253
return (uchar*) &(global_system_variables.*offset);
1369
bool sys_var::check_enum(THD *thd, set_var *var, const TYPELIB *enum_names)
1386
bool sys_var::check_enum(THD *thd __attribute__((__unused__)),
1387
set_var *var, const TYPELIB *enum_names)
1371
1389
char buff[STRING_BUFFER_USUAL_SIZE];
1372
1390
const char *value;
1405
bool sys_var::check_set(THD *thd, set_var *var, TYPELIB *enum_names)
1423
bool sys_var::check_set(THD *thd __attribute__((__unused__)),
1424
set_var *var, TYPELIB *enum_names)
1408
1427
char buff[STRING_BUFFER_USUAL_SIZE], *error= 0;
1625
uchar *sys_var_thd_bit::value_ptr(THD *thd, enum_var_type type,
1644
uchar *sys_var_thd_bit::value_ptr(THD *thd,
1645
enum_var_type type __attribute__((__unused__)),
1646
LEX_STRING *base __attribute__((__unused__)))
1629
1649
If reverse is 0 (default) return 1 if bit is set.
1859
1881
uchar *sys_var_character_set::value_ptr(THD *thd, enum_var_type type,
1882
LEX_STRING *base __attribute__((__unused__)))
1862
1884
CHARSET_INFO *cs= ci_ptr(thd,type)[0];
1863
1885
return cs ? (uchar*) cs->csname : (uchar*) NULL;
1971
uchar *sys_var_key_cache_param::value_ptr(THD *thd, enum_var_type type,
1993
uchar *sys_var_key_cache_param::value_ptr(THD *thd __attribute__((__unused__)),
1994
enum_var_type type __attribute__((__unused__)),
1995
LEX_STRING *base __attribute__((__unused__)))
1974
1997
KEY_CACHE *key_cache= get_key_cache(base);
1975
1998
if (!key_cache)
2138
void sys_var_log_state::set_default(THD *thd, enum_var_type type)
2161
void sys_var_log_state::set_default(THD *thd,
2162
enum_var_type type __attribute__((__unused__)))
2140
2164
pthread_mutex_lock(&LOCK_global_system_variables);
2141
2165
logger.deactivate_log_handler(thd, log_type);
2206
bool update_sys_var_str_path(THD *thd, sys_var_str *var_str,
2207
set_var *var, const char *log_ext,
2208
bool log_state, uint log_type)
2231
bool update_sys_var_str_path(THD *thd __attribute__((__unused__)),
2232
sys_var_str *var_str,
2233
set_var *var, const char *log_ext,
2234
bool log_state, uint log_type)
2210
2236
MYSQL_QUERY_LOG *file_log;
2211
2237
char buff[FN_REFLEN];
2269
2295
static bool sys_update_general_log_path(THD *thd, set_var * var)
2271
return update_sys_var_str_path(thd, &sys_var_general_log_path,
2272
var, ".log", opt_log, QUERY_LOG_GENERAL);
2297
return update_sys_var_str_path(thd, &sys_var_general_log_path,
2298
var, ".log", opt_log, QUERY_LOG_GENERAL);
2276
static void sys_default_general_log_path(THD *thd, enum_var_type type)
2302
static void sys_default_general_log_path(THD *thd,
2303
enum_var_type type __attribute__((__unused__)))
2278
2305
(void) update_sys_var_str_path(thd, &sys_var_general_log_path,
2279
0, ".log", opt_log, QUERY_LOG_GENERAL);
2306
0, ".log", opt_log, QUERY_LOG_GENERAL);
2283
2310
static bool sys_update_slow_log_path(THD *thd, set_var * var)
2285
2312
return update_sys_var_str_path(thd, &sys_var_slow_log_path,
2286
var, "-slow.log", opt_slow_log,
2313
var, "-slow.log", opt_slow_log,
2287
2314
QUERY_LOG_SLOW);
2291
static void sys_default_slow_log_path(THD *thd, enum_var_type type)
2318
static void sys_default_slow_log_path(THD *thd,
2319
enum_var_type type __attribute__((__unused__)))
2293
2321
(void) update_sys_var_str_path(thd, &sys_var_slow_log_path,
2294
0, "-slow.log", opt_slow_log,
2322
0, "-slow.log", opt_slow_log,
2295
2323
QUERY_LOG_SLOW);
2299
bool sys_var_log_output::update(THD *thd, set_var *var)
2327
bool sys_var_log_output::update(THD *thd __attribute__((__unused__)),
2301
2330
pthread_mutex_lock(&LOCK_global_system_variables);
2302
2331
logger.lock_exclusive();
2324
uchar *sys_var_log_output::value_ptr(THD *thd, enum_var_type type,
2354
uchar *sys_var_log_output::value_ptr(THD *thd,
2355
enum_var_type type __attribute__((__unused__)),
2356
LEX_STRING *base __attribute__((__unused__)))
2327
2358
char buff[256];
2328
2359
String tmp(buff, sizeof(buff), &my_charset_latin1);
2350
2381
Functions to handle SET NAMES and SET CHARACTER SET
2351
2382
*****************************************************************************/
2353
int set_var_collation_client::check(THD *thd)
2384
int set_var_collation_client::check(THD *thd __attribute__((__unused__)))
2355
2386
/* Currently, UCS-2 cannot be used as a client character set */
2356
2387
if (character_set_client->mbminlen > 1)
2384
void sys_var_timestamp::set_default(THD *thd, enum_var_type type)
2415
void sys_var_timestamp::set_default(THD *thd,
2416
enum_var_type type __attribute__((__unused__)))
2386
2418
thd->user_time=0;
2390
uchar *sys_var_timestamp::value_ptr(THD *thd, enum_var_type type,
2422
uchar *sys_var_timestamp::value_ptr(THD *thd,
2423
enum_var_type type __attribute__((__unused__)),
2424
LEX_STRING *base __attribute__((__unused__)))
2393
2426
thd->sys_var_tmp.long_value= (long) thd->start_time;
2394
2427
return (uchar*) &thd->sys_var_tmp.long_value;
2398
2431
bool sys_var_last_insert_id::update(THD *thd, set_var *var)
2400
thd->first_successful_insert_id_in_prev_stmt=
2433
thd->first_successful_insert_id_in_prev_stmt=
2401
2434
var->save_result.ulonglong_value;
2406
uchar *sys_var_last_insert_id::value_ptr(THD *thd, enum_var_type type,
2439
uchar *sys_var_last_insert_id::value_ptr(THD *thd,
2440
enum_var_type type __attribute__((__unused__)),
2441
LEX_STRING *base __attribute__((__unused__)))
2410
this tmp var makes it robust againt change of type of
2444
this tmp var makes it robust againt change of type of
2411
2445
read_first_successful_insert_id_in_prev_stmt().
2413
2447
thd->sys_var_tmp.ulonglong_value=
2426
uchar *sys_var_insert_id::value_ptr(THD *thd, enum_var_type type,
2460
uchar *sys_var_insert_id::value_ptr(THD *thd,
2461
enum_var_type type __attribute__((__unused__)),
2462
LEX_STRING *base __attribute__((__unused__)))
2429
thd->sys_var_tmp.ulonglong_value=
2464
thd->sys_var_tmp.ulonglong_value=
2430
2465
thd->auto_inc_intervals_forced.minimum();
2431
2466
return (uchar*) &thd->sys_var_tmp.ulonglong_value;
2551
void sys_var_max_user_conn::set_default(THD *thd, enum_var_type type)
2587
void sys_var_max_user_conn::set_default(THD *thd __attribute__((__unused__)),
2588
enum_var_type type __attribute__((__unused__)))
2553
2590
DBUG_ASSERT(type == OPT_GLOBAL);
2554
2591
pthread_mutex_lock(&LOCK_global_system_variables);
2617
uchar *sys_var_thd_lc_time_names::value_ptr(THD *thd, enum_var_type type,
2655
uchar *sys_var_thd_lc_time_names::value_ptr(THD *thd,
2657
LEX_STRING *base __attribute__((__unused__)))
2620
2659
return type == OPT_GLOBAL ?
2621
2660
(uchar *) global_system_variables.lc_time_names->name :
2734
static int check_log_update(THD *thd, set_var *var)
2773
static int check_log_update(THD *thd __attribute__((__unused__)),
2774
set_var *var __attribute__((__unused__)))
2739
static bool set_log_update(THD *thd, set_var *var)
2779
static bool set_log_update(THD *thd __attribute__((__unused__)),
2780
set_var *var __attribute__((__unused__)))
2742
2783
The update log is not supported anymore since 5.0.
3466
void free_key_cache(const char *name, KEY_CACHE *key_cache)
3508
void free_key_cache(const char *name __attribute__((__unused__)),
3509
KEY_CACHE *key_cache)
3468
3511
ha_end_key_cache(key_cache);
3469
3512
my_free((char*) key_cache, MYF(0));