set_var.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:101k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000-2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /*
  14.   Handling of MySQL SQL variables
  15.   To add a new variable, one has to do the following:
  16.   - Use one of the 'sys_var... classes from set_var.h or write a specific
  17.     one for the variable type.
  18.   - Define it in the 'variable definition list' in this file.
  19.   - If the variable should be changeable or one should be able to access it
  20.     with @@variable_name, it should be added to the 'list of all variables'
  21.     list (sys_variables) in this file.
  22.   - If the variable is thread specific, add it to 'system_variables' struct.
  23.     If not, add it to mysqld.cc and an declaration in 'mysql_priv.h'
  24.   - If the variable should be changed from the command line, add a definition
  25.     of it in the my_option structure list in mysqld.dcc
  26.   - Don't forget to initialize new fields in global_system_variables and
  27.     max_system_variables!
  28.   - If the variable should show up in 'show variables' add it to the
  29.     init_vars[] struct in this file
  30.   NOTES:
  31.     - Be careful with var->save_result: sys_var::check() only updates
  32.     ulonglong_value; so other members of the union are garbage then; to use
  33.     them you must first assign a value to them (in specific ::check() for
  34.     example).
  35.   TODO:
  36.     - Add full support for the variable character_set (for 4.1)
  37.     - When updating myisam_delay_key_write, we should do a 'flush tables'
  38.       of all MyISAM tables to ensure that they are reopen with the
  39.       new attribute.
  40. */
  41. #ifdef USE_PRAGMA_IMPLEMENTATION
  42. #pragma implementation // gcc: Class implementation
  43. #endif
  44. #include "mysql_priv.h"
  45. #include <mysql.h>
  46. #include "slave.h"
  47. #include <my_getopt.h>
  48. #include <thr_alarm.h>
  49. #include <myisam.h>
  50. #ifdef HAVE_BERKELEY_DB
  51. #include "ha_berkeley.h"
  52. #endif
  53. #ifdef HAVE_INNOBASE_DB
  54. #include "ha_innodb.h"
  55. #endif
  56. #ifdef HAVE_NDBCLUSTER_DB
  57. #include "ha_ndbcluster.h"
  58. #endif
  59. static HASH system_variable_hash;
  60. const char *bool_type_names[]= { "OFF", "ON", NullS };
  61. TYPELIB bool_typelib=
  62. {
  63.   array_elements(bool_type_names)-1, "", bool_type_names, NULL
  64. };
  65. const char *delay_key_write_type_names[]= { "OFF", "ON", "ALL", NullS };
  66. TYPELIB delay_key_write_typelib=
  67. {
  68.   array_elements(delay_key_write_type_names)-1, "",
  69.   delay_key_write_type_names, NULL
  70. };
  71. static int  sys_check_charset(THD *thd, set_var *var);
  72. static bool sys_update_charset(THD *thd, set_var *var);
  73. static void sys_set_default_charset(THD *thd, enum_var_type type);
  74. static int  sys_check_ftb_syntax(THD *thd,  set_var *var);
  75. static bool sys_update_ftb_syntax(THD *thd, set_var * var);
  76. static void sys_default_ftb_syntax(THD *thd, enum_var_type type);
  77. static bool sys_update_init_connect(THD*, set_var*);
  78. static void sys_default_init_connect(THD*, enum_var_type type);
  79. static bool sys_update_init_slave(THD*, set_var*);
  80. static void sys_default_init_slave(THD*, enum_var_type type);
  81. static bool set_option_bit(THD *thd, set_var *var);
  82. static bool set_option_autocommit(THD *thd, set_var *var);
  83. static int  check_log_update(THD *thd, set_var *var);
  84. static bool set_log_update(THD *thd, set_var *var);
  85. static int  check_pseudo_thread_id(THD *thd, set_var *var);
  86. static void fix_low_priority_updates(THD *thd, enum_var_type type);
  87. static void fix_tx_isolation(THD *thd, enum_var_type type);
  88. static void fix_net_read_timeout(THD *thd, enum_var_type type);
  89. static void fix_net_write_timeout(THD *thd, enum_var_type type);
  90. static void fix_net_retry_count(THD *thd, enum_var_type type);
  91. static void fix_max_join_size(THD *thd, enum_var_type type);
  92. static void fix_query_cache_size(THD *thd, enum_var_type type);
  93. static void fix_query_cache_min_res_unit(THD *thd, enum_var_type type);
  94. static void fix_myisam_max_extra_sort_file_size(THD *thd, enum_var_type type);
  95. static void fix_myisam_max_sort_file_size(THD *thd, enum_var_type type);
  96. static void fix_max_binlog_size(THD *thd, enum_var_type type);
  97. static void fix_max_relay_log_size(THD *thd, enum_var_type type);
  98. static void fix_max_connections(THD *thd, enum_var_type type);
  99. static int check_max_delayed_threads(THD *thd, set_var *var);
  100. static void fix_thd_mem_root(THD *thd, enum_var_type type);
  101. static void fix_trans_mem_root(THD *thd, enum_var_type type);
  102. static void fix_server_id(THD *thd, enum_var_type type);
  103. static KEY_CACHE *create_key_cache(const char *name, uint length);
  104. void fix_sql_mode_var(THD *thd, enum_var_type type);
  105. static byte *get_error_count(THD *thd);
  106. static byte *get_warning_count(THD *thd);
  107. static byte *get_have_innodb(THD *thd);
  108. /*
  109.   Variable definition list
  110.   These are variables that can be set from the command line, in
  111.   alphabetic order
  112. */
  113. sys_var_long_ptr sys_binlog_cache_size("binlog_cache_size",
  114.       &binlog_cache_size);
  115. sys_var_thd_ulong sys_bulk_insert_buff_size("bulk_insert_buffer_size",
  116.   &SV::bulk_insert_buff_size);
  117. sys_var_character_set_server sys_character_set_server("character_set_server");
  118. sys_var_str sys_charset_system("character_set_system",
  119.     sys_check_charset,
  120.     sys_update_charset,
  121.     sys_set_default_charset,
  122.                                     (char *)my_charset_utf8_general_ci.name);
  123. sys_var_character_set_database sys_character_set_database("character_set_database");
  124. sys_var_character_set_client  sys_character_set_client("character_set_client");
  125. sys_var_character_set_connection  sys_character_set_connection("character_set_connection");
  126. sys_var_character_set_results sys_character_set_results("character_set_results");
  127. sys_var_collation_connection sys_collation_connection("collation_connection");
  128. sys_var_collation_database sys_collation_database("collation_database");
  129. sys_var_collation_server sys_collation_server("collation_server");
  130. sys_var_bool_ptr sys_concurrent_insert("concurrent_insert",
  131.       &myisam_concurrent_insert);
  132. sys_var_long_ptr sys_connect_timeout("connect_timeout",
  133.     &connect_timeout);
  134. sys_var_enum sys_delay_key_write("delay_key_write",
  135.     &delay_key_write_options,
  136.     &delay_key_write_typelib,
  137.     fix_delay_key_write);
  138. sys_var_long_ptr sys_delayed_insert_limit("delayed_insert_limit",
  139.  &delayed_insert_limit);
  140. sys_var_long_ptr sys_delayed_insert_timeout("delayed_insert_timeout",
  141.    &delayed_insert_timeout);
  142. sys_var_long_ptr sys_delayed_queue_size("delayed_queue_size",
  143.        &delayed_queue_size);
  144. sys_var_long_ptr sys_expire_logs_days("expire_logs_days",
  145.      &expire_logs_days);
  146. sys_var_bool_ptr sys_flush("flush", &myisam_flush);
  147. sys_var_long_ptr sys_flush_time("flush_time", &flush_time);
  148. sys_var_str             sys_ft_boolean_syntax("ft_boolean_syntax",
  149.                                          sys_check_ftb_syntax,
  150.                                          sys_update_ftb_syntax,
  151.                                          sys_default_ftb_syntax,
  152.                                          ft_boolean_syntax);
  153. sys_var_str             sys_init_connect("init_connect", 0,
  154.                                          sys_update_init_connect,
  155.                                          sys_default_init_connect,0);
  156. sys_var_str             sys_init_slave("init_slave", 0,
  157.                                        sys_update_init_slave,
  158.                                        sys_default_init_slave,0);
  159. sys_var_thd_ulong sys_interactive_timeout("interactive_timeout",
  160. &SV::net_interactive_timeout);
  161. sys_var_thd_ulong sys_join_buffer_size("join_buffer_size",
  162.      &SV::join_buff_size);
  163. sys_var_key_buffer_size sys_key_buffer_size("key_buffer_size");
  164. sys_var_key_cache_long  sys_key_cache_block_size("key_cache_block_size",
  165.  offsetof(KEY_CACHE,
  166.   param_block_size));
  167. sys_var_key_cache_long sys_key_cache_division_limit("key_cache_division_limit",
  168.      offsetof(KEY_CACHE,
  169.       param_division_limit));
  170. sys_var_key_cache_long  sys_key_cache_age_threshold("key_cache_age_threshold",
  171.      offsetof(KEY_CACHE,
  172.       param_age_threshold));
  173. sys_var_bool_ptr sys_local_infile("local_infile",
  174.  &opt_local_infile);
  175. sys_var_thd_ulong sys_log_warnings("log_warnings", &SV::log_warnings);
  176. sys_var_thd_ulong sys_long_query_time("long_query_time",
  177.      &SV::long_query_time);
  178. sys_var_thd_bool sys_low_priority_updates("low_priority_updates",
  179.  &SV::low_priority_updates,
  180.  fix_low_priority_updates);
  181. #ifndef TO_BE_DELETED /* Alias for the low_priority_updates */
  182. sys_var_thd_bool sys_sql_low_priority_updates("sql_low_priority_updates",
  183.      &SV::low_priority_updates,
  184.      fix_low_priority_updates);
  185. #endif
  186. sys_var_thd_ulong sys_max_allowed_packet("max_allowed_packet",
  187.        &SV::max_allowed_packet);
  188. sys_var_long_ptr sys_max_binlog_cache_size("max_binlog_cache_size",
  189.   &max_binlog_cache_size);
  190. sys_var_long_ptr sys_max_binlog_size("max_binlog_size",
  191.     &max_binlog_size,
  192.                                             fix_max_binlog_size);
  193. sys_var_long_ptr sys_max_connections("max_connections",
  194.     &max_connections,
  195.                                             fix_max_connections);
  196. sys_var_long_ptr sys_max_connect_errors("max_connect_errors",
  197.        &max_connect_errors);
  198. sys_var_thd_ulong       sys_max_insert_delayed_threads("max_insert_delayed_threads",
  199.        &SV::max_insert_delayed_threads,
  200.                                                        check_max_delayed_threads,
  201.                                                        fix_max_connections);
  202. sys_var_thd_ulong sys_max_delayed_threads("max_delayed_threads",
  203. &SV::max_insert_delayed_threads,
  204.                                                 check_max_delayed_threads,
  205.                                                 fix_max_connections);
  206. sys_var_thd_ulong sys_max_error_count("max_error_count",
  207.     &SV::max_error_count);
  208. sys_var_thd_ulong sys_max_heap_table_size("max_heap_table_size",
  209. &SV::max_heap_table_size);
  210. sys_var_thd_ulong       sys_pseudo_thread_id("pseudo_thread_id",
  211.      &SV::pseudo_thread_id,
  212.                                              check_pseudo_thread_id, 0);
  213. sys_var_thd_ha_rows sys_max_join_size("max_join_size",
  214.   &SV::max_join_size,
  215.   fix_max_join_size);
  216. sys_var_thd_ulong sys_max_seeks_for_key("max_seeks_for_key",
  217.       &SV::max_seeks_for_key);
  218. sys_var_thd_ulong   sys_max_length_for_sort_data("max_length_for_sort_data",
  219.                                                  &SV::max_length_for_sort_data);
  220. #ifndef TO_BE_DELETED /* Alias for max_join_size */
  221. sys_var_thd_ha_rows sys_sql_max_join_size("sql_max_join_size",
  222.       &SV::max_join_size,
  223.       fix_max_join_size);
  224. #endif
  225. sys_var_long_ptr sys_max_relay_log_size("max_relay_log_size",
  226.                                                &max_relay_log_size,
  227.                                                fix_max_relay_log_size);
  228. sys_var_thd_ulong sys_max_sort_length("max_sort_length",
  229.     &SV::max_sort_length);
  230. sys_var_long_ptr sys_max_user_connections("max_user_connections",
  231.  &max_user_connections);
  232. sys_var_thd_ulong sys_max_tmp_tables("max_tmp_tables",
  233.    &SV::max_tmp_tables);
  234. sys_var_long_ptr sys_max_write_lock_count("max_write_lock_count",
  235.  &max_write_lock_count);
  236. sys_var_long_ptr sys_myisam_data_pointer_size("myisam_data_pointer_size",
  237.                                                     &myisam_data_pointer_size);
  238. sys_var_thd_ulonglong sys_myisam_max_extra_sort_file_size("myisam_max_extra_sort_file_size", &SV::myisam_max_extra_sort_file_size, fix_myisam_max_extra_sort_file_size, 1);
  239. sys_var_thd_ulonglong sys_myisam_max_sort_file_size("myisam_max_sort_file_size", &SV::myisam_max_sort_file_size, fix_myisam_max_sort_file_size, 1);
  240. sys_var_thd_ulong       sys_myisam_repair_threads("myisam_repair_threads", &SV::myisam_repair_threads);
  241. sys_var_thd_ulong sys_myisam_sort_buffer_size("myisam_sort_buffer_size", &SV::myisam_sort_buff_size);
  242. sys_var_thd_enum        sys_myisam_stats_method("myisam_stats_method",
  243.                                                 &SV::myisam_stats_method,
  244.                                                 &myisam_stats_method_typelib,
  245.                                                 NULL);
  246. sys_var_thd_ulong sys_net_buffer_length("net_buffer_length",
  247.       &SV::net_buffer_length);
  248. sys_var_thd_ulong sys_net_read_timeout("net_read_timeout",
  249.      &SV::net_read_timeout,
  250.      0, fix_net_read_timeout);
  251. sys_var_thd_ulong sys_net_write_timeout("net_write_timeout",
  252.       &SV::net_write_timeout,
  253.       0, fix_net_write_timeout);
  254. sys_var_thd_ulong sys_net_retry_count("net_retry_count",
  255.     &SV::net_retry_count,
  256.     0, fix_net_retry_count);
  257. sys_var_thd_bool sys_new_mode("new", &SV::new_mode);
  258. sys_var_thd_bool sys_old_passwords("old_passwords", &SV::old_passwords);
  259. sys_var_thd_ulong       sys_preload_buff_size("preload_buffer_size",
  260.                                               &SV::preload_buff_size);
  261. sys_var_thd_ulong sys_read_buff_size("read_buffer_size",
  262.    &SV::read_buff_size);
  263. sys_var_bool_ptr sys_readonly("read_only", &opt_readonly);
  264. sys_var_thd_ulong sys_read_rnd_buff_size("read_rnd_buffer_size",
  265.        &SV::read_rnd_buff_size);
  266. #ifdef HAVE_REPLICATION
  267. sys_var_bool_ptr sys_relay_log_purge("relay_log_purge",
  268.                                             &relay_log_purge);
  269. #endif
  270. sys_var_long_ptr sys_rpl_recovery_rank("rpl_recovery_rank",
  271.       &rpl_recovery_rank);
  272. sys_var_long_ptr sys_query_cache_size("query_cache_size",
  273.      &query_cache_size,
  274.      fix_query_cache_size);
  275. sys_var_thd_ulong sys_range_alloc_block_size("range_alloc_block_size",
  276.    &SV::range_alloc_block_size);
  277. sys_var_thd_ulong sys_query_alloc_block_size("query_alloc_block_size",
  278.    &SV::query_alloc_block_size,
  279.    0, fix_thd_mem_root);
  280. sys_var_thd_ulong sys_query_prealloc_size("query_prealloc_size",
  281. &SV::query_prealloc_size,
  282. 0, fix_thd_mem_root);
  283. sys_var_thd_ulong sys_trans_alloc_block_size("transaction_alloc_block_size",
  284.    &SV::trans_alloc_block_size,
  285.    0, fix_trans_mem_root);
  286. sys_var_thd_ulong sys_trans_prealloc_size("transaction_prealloc_size",
  287. &SV::trans_prealloc_size,
  288. 0, fix_trans_mem_root);
  289. #ifdef HAVE_QUERY_CACHE
  290. sys_var_long_ptr sys_query_cache_limit("query_cache_limit",
  291.       &query_cache.query_cache_limit);
  292. sys_var_long_ptr        sys_query_cache_min_res_unit("query_cache_min_res_unit",
  293.      &query_cache_min_res_unit,
  294.      fix_query_cache_min_res_unit);
  295. sys_var_thd_enum sys_query_cache_type("query_cache_type",
  296.      &SV::query_cache_type,
  297.      &query_cache_type_typelib);
  298. sys_var_thd_bool
  299. sys_query_cache_wlock_invalidate("query_cache_wlock_invalidate",
  300.  &SV::query_cache_wlock_invalidate);
  301. #endif /* HAVE_QUERY_CACHE */
  302. sys_var_bool_ptr sys_secure_auth("secure_auth", &opt_secure_auth);
  303. sys_var_long_ptr sys_server_id("server_id", &server_id, fix_server_id);
  304. sys_var_bool_ptr sys_slave_compressed_protocol("slave_compressed_protocol",
  305.       &opt_slave_compressed_protocol);
  306. #ifdef HAVE_REPLICATION
  307. sys_var_long_ptr sys_slave_net_timeout("slave_net_timeout",
  308.       &slave_net_timeout);
  309. sys_var_long_ptr sys_slave_trans_retries("slave_transaction_retries",
  310.                                                 &slave_trans_retries);
  311. #endif
  312. sys_var_long_ptr sys_slow_launch_time("slow_launch_time",
  313.      &slow_launch_time);
  314. sys_var_thd_ulong sys_sort_buffer("sort_buffer_size",
  315. &SV::sortbuff_size);
  316. sys_var_thd_sql_mode    sys_sql_mode("sql_mode",
  317.                                      &SV::sql_mode);
  318. sys_var_thd_table_type  sys_table_type("table_type",
  319.        &SV::table_type);
  320. sys_var_thd_storage_engine sys_storage_engine("storage_engine",
  321.        &SV::table_type);
  322. #ifdef HAVE_REPLICATION
  323. sys_var_sync_binlog_period sys_sync_binlog_period("sync_binlog", &sync_binlog_period);
  324. sys_var_thd_ulong sys_sync_replication("sync_replication",
  325.                                                &SV::sync_replication);
  326. sys_var_thd_ulong sys_sync_replication_slave_id(
  327. "sync_replication_slave_id",
  328.                                                &SV::sync_replication_slave_id);
  329. sys_var_thd_ulong sys_sync_replication_timeout(
  330. "sync_replication_timeout",
  331.                                                &SV::sync_replication_timeout);
  332. #endif
  333. sys_var_bool_ptr sys_sync_frm("sync_frm", &opt_sync_frm);
  334. sys_var_long_ptr sys_table_cache_size("table_cache",
  335.      &table_cache_size);
  336. sys_var_long_ptr sys_thread_cache_size("thread_cache_size",
  337.       &thread_cache_size);
  338. sys_var_thd_enum sys_tx_isolation("tx_isolation",
  339.  &SV::tx_isolation,
  340.  &tx_isolation_typelib,
  341.  fix_tx_isolation);
  342. sys_var_thd_ulong sys_tmp_table_size("tmp_table_size",
  343.    &SV::tmp_table_size);
  344. sys_var_thd_ulong sys_net_wait_timeout("wait_timeout",
  345.      &SV::net_wait_timeout);
  346. #ifdef HAVE_INNOBASE_DB
  347. sys_var_long_ptr        sys_innodb_max_dirty_pages_pct("innodb_max_dirty_pages_pct",
  348.                                                         &srv_max_buf_pool_modified_pct);
  349. sys_var_long_ptr sys_innodb_max_purge_lag("innodb_max_purge_lag",
  350. &srv_max_purge_lag);
  351. sys_var_thd_bool sys_innodb_table_locks("innodb_table_locks",
  352.                                                &SV::innodb_table_locks);
  353. sys_var_long_ptr sys_innodb_autoextend_increment("innodb_autoextend_increment",
  354. &srv_auto_extend_increment);
  355. #endif
  356. #ifdef HAVE_NDBCLUSTER_DB
  357. /* ndb thread specific variable settings */
  358. sys_var_thd_ulong 
  359. sys_ndb_autoincrement_prefetch_sz("ndb_autoincrement_prefetch_sz",
  360.   &SV::ndb_autoincrement_prefetch_sz);
  361. sys_var_thd_bool
  362. sys_ndb_force_send("ndb_force_send", &SV::ndb_force_send);
  363. sys_var_thd_bool
  364. sys_ndb_use_exact_count("ndb_use_exact_count", &SV::ndb_use_exact_count);
  365. sys_var_thd_bool
  366. sys_ndb_use_transactions("ndb_use_transactions", &SV::ndb_use_transactions);
  367. #endif
  368. /* Time/date/datetime formats */
  369. sys_var_thd_date_time_format sys_time_format("time_format",
  370.      &SV::time_format,
  371.      MYSQL_TIMESTAMP_TIME);
  372. sys_var_thd_date_time_format sys_date_format("date_format",
  373.      &SV::date_format,
  374.      MYSQL_TIMESTAMP_DATE);
  375. sys_var_thd_date_time_format sys_datetime_format("datetime_format",
  376.  &SV::datetime_format,
  377.  MYSQL_TIMESTAMP_DATETIME);
  378. /* Variables that are bits in THD */
  379. static sys_var_thd_bit sys_autocommit("autocommit", 0,
  380.        set_option_autocommit,
  381.        OPTION_NOT_AUTOCOMMIT,
  382.        1);
  383. static sys_var_thd_bit sys_big_tables("big_tables", 0,
  384.        set_option_bit,
  385.        OPTION_BIG_TABLES);
  386. #ifndef TO_BE_DELETED /* Alias for big_tables */
  387. static sys_var_thd_bit sys_sql_big_tables("sql_big_tables", 0,
  388.    set_option_bit,
  389.    OPTION_BIG_TABLES);
  390. #endif
  391. static sys_var_thd_bit sys_big_selects("sql_big_selects", 0,
  392. set_option_bit,
  393. OPTION_BIG_SELECTS);
  394. static sys_var_thd_bit sys_log_off("sql_log_off", 0,
  395.     set_option_bit,
  396.     OPTION_LOG_OFF);
  397. static sys_var_thd_bit sys_log_update("sql_log_update",
  398.                                        check_log_update,
  399.        set_log_update,
  400.        OPTION_UPDATE_LOG);
  401. static sys_var_thd_bit sys_log_binlog("sql_log_bin",
  402.                                        check_log_update,
  403.                                        set_log_update,
  404.                                        OPTION_BIN_LOG);
  405. static sys_var_thd_bit sys_sql_warnings("sql_warnings", 0,
  406.  set_option_bit,
  407.  OPTION_WARNINGS);
  408. static sys_var_thd_bit sys_sql_notes("sql_notes", 0,
  409.  set_option_bit,
  410.  OPTION_SQL_NOTES);
  411. static sys_var_thd_bit sys_auto_is_null("sql_auto_is_null", 0,
  412.  set_option_bit,
  413.  OPTION_AUTO_IS_NULL);
  414. static sys_var_thd_bit sys_safe_updates("sql_safe_updates", 0,
  415.  set_option_bit,
  416.  OPTION_SAFE_UPDATES);
  417. static sys_var_thd_bit sys_buffer_results("sql_buffer_result", 0,
  418.    set_option_bit,
  419.    OPTION_BUFFER_RESULT);
  420. static sys_var_thd_bit sys_quote_show_create("sql_quote_show_create", 0,
  421.       set_option_bit,
  422.       OPTION_QUOTE_SHOW_CREATE);
  423. static sys_var_thd_bit sys_foreign_key_checks("foreign_key_checks", 0,
  424.        set_option_bit,
  425.        OPTION_NO_FOREIGN_KEY_CHECKS,
  426.        1);
  427. static sys_var_thd_bit sys_unique_checks("unique_checks", 0,
  428.   set_option_bit,
  429.   OPTION_RELAXED_UNIQUE_CHECKS,
  430.   1);
  431. /* Local state variables */
  432. static sys_var_thd_ha_rows sys_select_limit("sql_select_limit",
  433.  &SV::select_limit);
  434. static sys_var_timestamp sys_timestamp("timestamp");
  435. static sys_var_last_insert_id sys_last_insert_id("last_insert_id");
  436. static sys_var_last_insert_id sys_identity("identity");
  437. static sys_var_insert_id sys_insert_id("insert_id");
  438. static sys_var_readonly sys_error_count("error_count",
  439. OPT_SESSION,
  440. SHOW_LONG,
  441. get_error_count);
  442. static sys_var_readonly sys_warning_count("warning_count",
  443.   OPT_SESSION,
  444.   SHOW_LONG,
  445.   get_warning_count);
  446. /* alias for last_insert_id() to be compatible with Sybase */
  447. #ifdef HAVE_REPLICATION
  448. static sys_var_slave_skip_counter sys_slave_skip_counter("sql_slave_skip_counter");
  449. #endif
  450. static sys_var_rand_seed1 sys_rand_seed1("rand_seed1");
  451. static sys_var_rand_seed2 sys_rand_seed2("rand_seed2");
  452. static sys_var_thd_ulong        sys_default_week_format("default_week_format",
  453.                 &SV::default_week_format);
  454. sys_var_thd_ulong               sys_group_concat_max_len("group_concat_max_len",
  455.                                                          &SV::group_concat_max_len);
  456. sys_var_thd_time_zone            sys_time_zone("time_zone");
  457. /* Read only variables */
  458. sys_var_const_str sys_os("version_compile_os", SYSTEM_TYPE);
  459. sys_var_readonly                sys_have_innodb("have_innodb", OPT_GLOBAL,
  460.                                                 SHOW_CHAR, get_have_innodb);
  461. /* Global read-only variable describing server license */
  462. sys_var_const_str sys_license("license", STRINGIFY_ARG(LICENSE));
  463. /*
  464.   List of all variables for initialisation and storage in hash
  465.   This is sorted in alphabetical order to make it easy to add new variables
  466.   If the variable is not in this list, it can't be changed with
  467.   SET variable_name=
  468. */
  469. sys_var *sys_variables[]=
  470. {
  471.   &sys_auto_is_null,
  472.   &sys_autocommit,
  473.   &sys_big_tables,
  474.   &sys_big_selects,
  475.   &sys_binlog_cache_size,
  476.   &sys_buffer_results,
  477.   &sys_bulk_insert_buff_size,
  478.   &sys_character_set_server,
  479.   &sys_character_set_database,
  480.   &sys_character_set_client,
  481.   &sys_character_set_connection,
  482.   &sys_character_set_results,
  483.   &sys_collation_connection,
  484.   &sys_collation_database,
  485.   &sys_collation_server,
  486.   &sys_concurrent_insert,
  487.   &sys_connect_timeout,
  488.   &sys_date_format,
  489.   &sys_datetime_format,
  490.   &sys_default_week_format,
  491.   &sys_delay_key_write,
  492.   &sys_delayed_insert_limit,
  493.   &sys_delayed_insert_timeout,
  494.   &sys_delayed_queue_size,
  495.   &sys_error_count,
  496.   &sys_expire_logs_days,
  497.   &sys_flush,
  498.   &sys_flush_time,
  499.   &sys_ft_boolean_syntax,
  500.   &sys_foreign_key_checks,
  501.   &sys_group_concat_max_len,
  502.   &sys_have_innodb,
  503.   &sys_identity,
  504.   &sys_init_connect,
  505.   &sys_init_slave,
  506.   &sys_insert_id,
  507.   &sys_interactive_timeout,
  508.   &sys_join_buffer_size,
  509.   &sys_key_buffer_size,
  510.   &sys_key_cache_block_size,
  511.   &sys_key_cache_division_limit,
  512.   &sys_key_cache_age_threshold,
  513.   &sys_last_insert_id,
  514.   &sys_license,
  515.   &sys_local_infile,
  516.   &sys_log_binlog,
  517.   &sys_log_off,
  518.   &sys_log_update,
  519.   &sys_log_warnings,
  520.   &sys_long_query_time,
  521.   &sys_low_priority_updates,
  522.   &sys_max_allowed_packet,
  523.   &sys_max_binlog_cache_size,
  524.   &sys_max_binlog_size,
  525.   &sys_max_connect_errors,
  526.   &sys_max_connections,
  527.   &sys_max_delayed_threads,
  528.   &sys_max_error_count,
  529.   &sys_max_insert_delayed_threads,
  530.   &sys_max_heap_table_size,
  531.   &sys_max_join_size,
  532.   &sys_max_length_for_sort_data,
  533.   &sys_max_relay_log_size,
  534.   &sys_max_seeks_for_key,
  535.   &sys_max_sort_length,
  536.   &sys_max_tmp_tables,
  537.   &sys_max_user_connections,
  538.   &sys_max_write_lock_count,
  539.   &sys_myisam_data_pointer_size,
  540.   &sys_myisam_max_extra_sort_file_size,
  541.   &sys_myisam_max_sort_file_size,
  542.   &sys_myisam_repair_threads,
  543.   &sys_myisam_sort_buffer_size,
  544.   &sys_myisam_stats_method,
  545.   &sys_net_buffer_length,
  546.   &sys_net_read_timeout,
  547.   &sys_net_retry_count,
  548.   &sys_net_wait_timeout,
  549.   &sys_net_write_timeout,
  550.   &sys_new_mode,
  551.   &sys_old_passwords,
  552.   &sys_preload_buff_size,
  553.   &sys_pseudo_thread_id,
  554.   &sys_query_alloc_block_size,
  555.   &sys_query_cache_size,
  556.   &sys_query_prealloc_size,
  557. #ifdef HAVE_QUERY_CACHE
  558.   &sys_query_cache_limit,
  559.   &sys_query_cache_min_res_unit,
  560.   &sys_query_cache_type,
  561.   &sys_query_cache_wlock_invalidate,
  562. #endif /* HAVE_QUERY_CACHE */
  563.   &sys_quote_show_create,
  564.   &sys_rand_seed1,
  565.   &sys_rand_seed2,
  566.   &sys_range_alloc_block_size,
  567.   &sys_readonly,
  568.   &sys_read_buff_size,
  569.   &sys_read_rnd_buff_size,
  570. #ifdef HAVE_REPLICATION
  571.   &sys_relay_log_purge,
  572. #endif
  573.   &sys_rpl_recovery_rank,
  574.   &sys_safe_updates,
  575.   &sys_secure_auth,
  576.   &sys_select_limit,
  577.   &sys_server_id,
  578. #ifdef HAVE_REPLICATION
  579.   &sys_slave_compressed_protocol,
  580.   &sys_slave_net_timeout,
  581.   &sys_slave_trans_retries,
  582.   &sys_slave_skip_counter,
  583. #endif
  584.   &sys_slow_launch_time,
  585.   &sys_sort_buffer,
  586.   &sys_sql_big_tables,
  587.   &sys_sql_low_priority_updates,
  588.   &sys_sql_max_join_size,
  589.   &sys_sql_mode,
  590.   &sys_sql_warnings,
  591.   &sys_sql_notes,
  592.   &sys_storage_engine,
  593. #ifdef HAVE_REPLICATION
  594.   &sys_sync_binlog_period,
  595.   &sys_sync_replication,
  596.   &sys_sync_replication_slave_id,
  597.   &sys_sync_replication_timeout,
  598. #endif
  599.   &sys_sync_frm,
  600.   &sys_table_cache_size,
  601.   &sys_table_type,
  602.   &sys_thread_cache_size,
  603.   &sys_time_format,
  604.   &sys_timestamp,
  605.   &sys_time_zone,
  606.   &sys_tmp_table_size,
  607.   &sys_trans_alloc_block_size,
  608.   &sys_trans_prealloc_size,
  609.   &sys_tx_isolation,
  610.   &sys_os,
  611. #ifdef HAVE_INNOBASE_DB
  612.   &sys_innodb_max_dirty_pages_pct,
  613.   &sys_innodb_max_purge_lag,
  614.   &sys_innodb_table_locks,
  615.   &sys_innodb_max_purge_lag,
  616.   &sys_innodb_autoextend_increment,
  617. #endif  
  618. #ifdef HAVE_NDBCLUSTER_DB
  619.   &sys_ndb_autoincrement_prefetch_sz,
  620.   &sys_ndb_force_send,
  621.   &sys_ndb_use_exact_count,
  622.   &sys_ndb_use_transactions,
  623. #endif
  624.   &sys_unique_checks,
  625.   &sys_warning_count
  626. };
  627. /*
  628.   Variables shown by SHOW variables in alphabetical order
  629. */
  630. struct show_var_st init_vars[]= {
  631.   {"back_log",                (char*) &back_log,                    SHOW_LONG},
  632.   {"basedir",                 mysql_home,                           SHOW_CHAR},
  633. #ifdef HAVE_BERKELEY_DB
  634.   {"bdb_cache_size",          (char*) &berkeley_cache_size,         SHOW_LONG},
  635.   {"bdb_home",                (char*) &berkeley_home,               SHOW_CHAR_PTR},
  636.   {"bdb_log_buffer_size",     (char*) &berkeley_log_buffer_size,    SHOW_LONG},
  637.   {"bdb_logdir",              (char*) &berkeley_logdir,             SHOW_CHAR_PTR},
  638.   {"bdb_max_lock",            (char*) &berkeley_max_lock,     SHOW_LONG},
  639.   {"bdb_shared_data",       (char*) &berkeley_shared_data,     SHOW_BOOL},
  640.   {"bdb_tmpdir",              (char*) &berkeley_tmpdir,             SHOW_CHAR_PTR},
  641. #endif
  642.   {sys_binlog_cache_size.name,(char*) &sys_binlog_cache_size,     SHOW_SYS},
  643.   {sys_bulk_insert_buff_size.name,(char*) &sys_bulk_insert_buff_size,SHOW_SYS},
  644.   {sys_character_set_client.name,(char*) &sys_character_set_client, SHOW_SYS},
  645.   {sys_character_set_connection.name,(char*) &sys_character_set_connection,SHOW_SYS},
  646.   {sys_character_set_database.name, (char*) &sys_character_set_database,SHOW_SYS},
  647.   {sys_character_set_results.name,(char*) &sys_character_set_results, SHOW_SYS},
  648.   {sys_character_set_server.name, (char*) &sys_character_set_server,SHOW_SYS},
  649.   {sys_charset_system.name,   (char*) &sys_charset_system,          SHOW_SYS},
  650.   {"character_sets_dir",      mysql_charsets_dir,                   SHOW_CHAR},
  651.   {sys_collation_connection.name,(char*) &sys_collation_connection, SHOW_SYS},
  652.   {sys_collation_database.name,(char*) &sys_collation_database,     SHOW_SYS},
  653.   {sys_collation_server.name,(char*) &sys_collation_server,         SHOW_SYS},
  654.   {sys_concurrent_insert.name,(char*) &sys_concurrent_insert,       SHOW_SYS},
  655.   {sys_connect_timeout.name,  (char*) &sys_connect_timeout,         SHOW_SYS},
  656.   {"datadir",                 mysql_real_data_home,                 SHOW_CHAR},
  657.   {sys_date_format.name,      (char*) &sys_date_format,     SHOW_SYS},
  658.   {sys_datetime_format.name,  (char*) &sys_datetime_format,     SHOW_SYS},
  659.   {sys_default_week_format.name, (char*) &sys_default_week_format,  SHOW_SYS},
  660.   {sys_delay_key_write.name,  (char*) &sys_delay_key_write,         SHOW_SYS},
  661.   {sys_delayed_insert_limit.name, (char*) &sys_delayed_insert_limit,SHOW_SYS},
  662.   {sys_delayed_insert_timeout.name, (char*) &sys_delayed_insert_timeout, SHOW_SYS},
  663.   {sys_delayed_queue_size.name,(char*) &sys_delayed_queue_size,     SHOW_SYS},
  664.   {sys_expire_logs_days.name, (char*) &sys_expire_logs_days,        SHOW_SYS},
  665.   {sys_flush.name,             (char*) &sys_flush,                  SHOW_SYS},
  666.   {sys_flush_time.name,        (char*) &sys_flush_time,             SHOW_SYS},
  667.   {sys_ft_boolean_syntax.name,(char*) &ft_boolean_syntax,     SHOW_CHAR},
  668.   {"ft_max_word_len",         (char*) &ft_max_word_len,             SHOW_LONG},
  669.   {"ft_min_word_len",         (char*) &ft_min_word_len,             SHOW_LONG},
  670.   {"ft_query_expansion_limit",(char*) &ft_query_expansion_limit,    SHOW_LONG},
  671.   {"ft_stopword_file",        (char*) &ft_stopword_file,            SHOW_CHAR_PTR},
  672.   {sys_group_concat_max_len.name, (char*) &sys_group_concat_max_len,  SHOW_SYS},
  673.   {"have_archive",       (char*) &have_archive_db,             SHOW_HAVE},
  674.   {"have_bdb",       (char*) &have_berkeley_db,     SHOW_HAVE},
  675.   {"have_blackhole_engine",   (char*) &have_blackhole_db,     SHOW_HAVE},
  676.   {"have_compress",       (char*) &have_compress,     SHOW_HAVE},
  677.   {"have_crypt",       (char*) &have_crypt,     SHOW_HAVE},
  678.   {"have_csv",               (char*) &have_csv_db,             SHOW_HAVE},
  679.   {"have_example_engine",      (char*) &have_example_db,             SHOW_HAVE},
  680.   {"have_geometry",           (char*) &have_geometry,               SHOW_HAVE},
  681.   {"have_innodb",       (char*) &have_innodb,     SHOW_HAVE},
  682.   {"have_isam",       (char*) &have_isam,     SHOW_HAVE},
  683.   {"have_ndbcluster",         (char*) &have_ndbcluster,             SHOW_HAVE},
  684.   {"have_openssl",       (char*) &have_openssl,     SHOW_HAVE},
  685.   {"have_query_cache",        (char*) &have_query_cache,            SHOW_HAVE},
  686.   {"have_raid",       (char*) &have_raid,     SHOW_HAVE},
  687.   {"have_rtree_keys",         (char*) &have_rtree_keys,             SHOW_HAVE},
  688.   {"have_symlink",            (char*) &have_symlink,                SHOW_HAVE},
  689.   {"init_connect",            (char*) &sys_init_connect,            SHOW_SYS},
  690.   {"init_file",               (char*) &opt_init_file,               SHOW_CHAR_PTR},
  691.   {"init_slave",              (char*) &sys_init_slave,              SHOW_SYS},
  692. #ifdef HAVE_INNOBASE_DB
  693.   {"innodb_additional_mem_pool_size", (char*) &innobase_additional_mem_pool_size, SHOW_LONG },
  694.   {sys_innodb_autoextend_increment.name, (char*) &sys_innodb_autoextend_increment, SHOW_SYS},
  695.   {"innodb_buffer_pool_awe_mem_mb", (char*) &innobase_buffer_pool_awe_mem_mb, SHOW_LONG },
  696.   {"innodb_buffer_pool_size", (char*) &innobase_buffer_pool_size, SHOW_LONG },
  697.   {"innodb_data_file_path", (char*) &innobase_data_file_path,     SHOW_CHAR_PTR},
  698.   {"innodb_data_home_dir",  (char*) &innobase_data_home_dir,     SHOW_CHAR_PTR},
  699.   {"innodb_fast_shutdown", (char*) &innobase_fast_shutdown, SHOW_MY_BOOL},
  700.   {"innodb_file_io_threads", (char*) &innobase_file_io_threads, SHOW_LONG },
  701.   {"innodb_file_per_table", (char*) &innobase_file_per_table, SHOW_MY_BOOL},
  702.   {"innodb_flush_log_at_trx_commit", (char*) &innobase_flush_log_at_trx_commit, SHOW_INT},
  703.   {"innodb_flush_method",    (char*) &innobase_unix_file_flush_method, SHOW_CHAR_PTR},
  704.   {"innodb_force_recovery", (char*) &innobase_force_recovery, SHOW_LONG },
  705.   {"innodb_lock_wait_timeout", (char*) &innobase_lock_wait_timeout, SHOW_LONG },
  706.   {"innodb_locks_unsafe_for_binlog", (char*) &innobase_locks_unsafe_for_binlog, SHOW_MY_BOOL},
  707.   {"innodb_log_arch_dir",   (char*) &innobase_log_arch_dir,      SHOW_CHAR_PTR},
  708.   {"innodb_log_archive",    (char*) &innobase_log_archive,      SHOW_MY_BOOL},
  709.   {"innodb_log_buffer_size", (char*) &innobase_log_buffer_size, SHOW_LONG },
  710.   {"innodb_log_file_size", (char*) &innobase_log_file_size, SHOW_LONG},
  711.   {"innodb_log_files_in_group", (char*) &innobase_log_files_in_group, SHOW_LONG},
  712.   {"innodb_log_group_home_dir", (char*) &innobase_log_group_home_dir, SHOW_CHAR_PTR},
  713.   {sys_innodb_max_dirty_pages_pct.name, (char*) &sys_innodb_max_dirty_pages_pct, SHOW_SYS},
  714.   {sys_innodb_max_purge_lag.name, (char*) &sys_innodb_max_purge_lag, SHOW_SYS},
  715.   {"innodb_mirrored_log_groups", (char*) &innobase_mirrored_log_groups, SHOW_LONG},
  716.   {"innodb_open_files", (char*) &innobase_open_files, SHOW_LONG },
  717.   {sys_innodb_table_locks.name, (char*) &sys_innodb_table_locks, SHOW_SYS},
  718.   {"innodb_thread_concurrency", (char*) &innobase_thread_concurrency, SHOW_LONG },
  719. #endif
  720.   {sys_interactive_timeout.name,(char*) &sys_interactive_timeout,   SHOW_SYS},
  721.   {sys_join_buffer_size.name,   (char*) &sys_join_buffer_size,     SHOW_SYS},
  722.   {sys_key_buffer_size.name, (char*) &sys_key_buffer_size,     SHOW_SYS},
  723.   {sys_key_cache_age_threshold.name,   (char*) &sys_key_cache_age_threshold,
  724.                                                                     SHOW_SYS},
  725.   {sys_key_cache_block_size.name,   (char*) &sys_key_cache_block_size,
  726.                                                                     SHOW_SYS},
  727.   {sys_key_cache_division_limit.name,   (char*) &sys_key_cache_division_limit,
  728.                                                                     SHOW_SYS},
  729.   {"language",                language,                             SHOW_CHAR},
  730.   {"large_files_support",     (char*) &opt_large_files,             SHOW_BOOL},
  731.   {sys_license.name,       (char*) &sys_license,                 SHOW_SYS},
  732.   {sys_local_infile.name,     (char*) &sys_local_infile,     SHOW_SYS},
  733. #ifdef HAVE_MLOCKALL
  734.   {"locked_in_memory",       (char*) &locked_in_memory,     SHOW_BOOL},
  735. #endif
  736.   {"log",                     (char*) &opt_log,                     SHOW_BOOL},
  737.   {"log_bin",                 (char*) &opt_bin_log,                 SHOW_BOOL},
  738.   {"log_error",               (char*) log_error_file,               SHOW_CHAR},
  739. #ifdef HAVE_REPLICATION
  740.   {"log_slave_updates",       (char*) &opt_log_slave_updates,       SHOW_MY_BOOL},
  741. #endif
  742.   {"log_slow_queries",        (char*) &opt_slow_log,                SHOW_BOOL},
  743.   {"log_update",              (char*) &opt_update_log,              SHOW_BOOL},
  744.   {sys_log_warnings.name,     (char*) &sys_log_warnings,     SHOW_SYS},
  745.   {sys_long_query_time.name,  (char*) &sys_long_query_time,      SHOW_SYS},
  746.   {sys_low_priority_updates.name, (char*) &sys_low_priority_updates, SHOW_SYS},
  747.   {"lower_case_file_system",  (char*) &lower_case_file_system,      SHOW_MY_BOOL},
  748.   {"lower_case_table_names",  (char*) &lower_case_table_names,      SHOW_INT},
  749.   {sys_max_allowed_packet.name,(char*) &sys_max_allowed_packet,     SHOW_SYS},
  750.   {sys_max_binlog_cache_size.name,(char*) &sys_max_binlog_cache_size, SHOW_SYS},
  751.   {sys_max_binlog_size.name,    (char*) &sys_max_binlog_size,     SHOW_SYS},
  752.   {sys_max_connect_errors.name, (char*) &sys_max_connect_errors,    SHOW_SYS},
  753.   {sys_max_connections.name,    (char*) &sys_max_connections,     SHOW_SYS},
  754.   {sys_max_delayed_threads.name,(char*) &sys_max_delayed_threads,   SHOW_SYS},
  755.   {sys_max_error_count.name, (char*) &sys_max_error_count,     SHOW_SYS},
  756.   {sys_max_heap_table_size.name,(char*) &sys_max_heap_table_size,   SHOW_SYS},
  757.   {sys_max_insert_delayed_threads.name,
  758.    (char*) &sys_max_insert_delayed_threads,   SHOW_SYS},
  759.   {sys_max_join_size.name, (char*) &sys_max_join_size,     SHOW_SYS},
  760.   {sys_max_length_for_sort_data.name, (char*) &sys_max_length_for_sort_data,
  761.    SHOW_SYS},
  762.   {sys_max_relay_log_size.name, (char*) &sys_max_relay_log_size,    SHOW_SYS},
  763.   {sys_max_seeks_for_key.name,  (char*) &sys_max_seeks_for_key,     SHOW_SYS},
  764.   {sys_max_sort_length.name, (char*) &sys_max_sort_length,     SHOW_SYS},
  765.   {sys_max_tmp_tables.name, (char*) &sys_max_tmp_tables,     SHOW_SYS},
  766.   {sys_max_user_connections.name,(char*) &sys_max_user_connections, SHOW_SYS},
  767.   {sys_max_write_lock_count.name, (char*) &sys_max_write_lock_count,SHOW_SYS},
  768.   {sys_myisam_data_pointer_size.name, (char*) &sys_myisam_data_pointer_size, SHOW_SYS},
  769.   {sys_myisam_max_extra_sort_file_size.name,
  770.    (char*) &sys_myisam_max_extra_sort_file_size,
  771.    SHOW_SYS},
  772.   {sys_myisam_max_sort_file_size.name, (char*) &sys_myisam_max_sort_file_size,
  773.    SHOW_SYS},
  774.   {"myisam_recover_options",  (char*) &myisam_recover_options_str,  SHOW_CHAR_PTR},
  775.   {sys_myisam_repair_threads.name, (char*) &sys_myisam_repair_threads,
  776.    SHOW_SYS},
  777.   {sys_myisam_sort_buffer_size.name, (char*) &sys_myisam_sort_buffer_size, SHOW_SYS},
  778.   
  779.   {sys_myisam_stats_method.name, (char*) &sys_myisam_stats_method, SHOW_SYS},
  780.   
  781. #ifdef __NT__
  782.   {"named_pipe",       (char*) &opt_enable_named_pipe,       SHOW_MY_BOOL},
  783. #endif
  784. #ifdef HAVE_NDBCLUSTER_DB
  785.   {sys_ndb_autoincrement_prefetch_sz.name,
  786.    (char*) &sys_ndb_autoincrement_prefetch_sz,                      SHOW_SYS},
  787.   {sys_ndb_force_send.name,   (char*) &sys_ndb_force_send,          SHOW_SYS},
  788.   {sys_ndb_use_exact_count.name,(char*) &sys_ndb_use_exact_count,   SHOW_SYS},
  789.   {sys_ndb_use_transactions.name,(char*) &sys_ndb_use_transactions, SHOW_SYS},
  790. #endif
  791.   {sys_net_buffer_length.name,(char*) &sys_net_buffer_length,       SHOW_SYS},
  792.   {sys_net_read_timeout.name, (char*) &sys_net_read_timeout,        SHOW_SYS},
  793.   {sys_net_retry_count.name,  (char*) &sys_net_retry_count,     SHOW_SYS},
  794.   {sys_net_write_timeout.name,(char*) &sys_net_write_timeout,       SHOW_SYS},
  795.   {sys_new_mode.name,         (char*) &sys_new_mode,                SHOW_SYS},
  796.   {sys_old_passwords.name,    (char*) &sys_old_passwords,           SHOW_SYS},
  797.   {"open_files_limit",       (char*) &open_files_limit,     SHOW_LONG},
  798.   {"pid_file",                (char*) pidfile_name,                 SHOW_CHAR},
  799.   {"port",                    (char*) &mysqld_port,                  SHOW_INT},
  800.   {sys_preload_buff_size.name, (char*) &sys_preload_buff_size,      SHOW_SYS},
  801.   {"protocol_version",        (char*) &protocol_version,            SHOW_INT},
  802.   {sys_query_alloc_block_size.name, (char*) &sys_query_alloc_block_size,
  803.    SHOW_SYS},
  804. #ifdef HAVE_QUERY_CACHE
  805.   {sys_query_cache_limit.name,(char*) &sys_query_cache_limit,     SHOW_SYS},
  806.   {sys_query_cache_min_res_unit.name, (char*) &sys_query_cache_min_res_unit,
  807.    SHOW_SYS},
  808.   {sys_query_cache_size.name, (char*) &sys_query_cache_size,     SHOW_SYS},
  809.   {sys_query_cache_type.name, (char*) &sys_query_cache_type,        SHOW_SYS},
  810.   {sys_query_cache_wlock_invalidate.name,
  811.    (char *) &sys_query_cache_wlock_invalidate, SHOW_SYS},
  812. #endif /* HAVE_QUERY_CACHE */
  813.   {sys_query_prealloc_size.name, (char*) &sys_query_prealloc_size,  SHOW_SYS},
  814.   {sys_range_alloc_block_size.name, (char*) &sys_range_alloc_block_size,
  815.    SHOW_SYS},
  816.   {sys_read_buff_size.name,   (char*) &sys_read_buff_size,     SHOW_SYS},
  817.   {sys_readonly.name,         (char*) &sys_readonly,                SHOW_SYS},
  818.   {sys_read_rnd_buff_size.name,(char*) &sys_read_rnd_buff_size,     SHOW_SYS},
  819. #ifdef HAVE_REPLICATION
  820.   {sys_relay_log_purge.name,  (char*) &sys_relay_log_purge,         SHOW_SYS},
  821.   {"relay_log_space_limit",  (char*) &relay_log_space_limit,        SHOW_LONGLONG},
  822. #endif
  823.   {sys_rpl_recovery_rank.name,(char*) &sys_rpl_recovery_rank,       SHOW_SYS},
  824.   {"secure_auth",             (char*) &sys_secure_auth,             SHOW_SYS},
  825. #ifdef HAVE_SMEM
  826.   {"shared_memory",           (char*) &opt_enable_shared_memory,    SHOW_MY_BOOL},
  827.   {"shared_memory_base_name", (char*) &shared_memory_base_name,     SHOW_CHAR_PTR},
  828. #endif
  829.   {sys_server_id.name,       (char*) &sys_server_id,     SHOW_SYS},
  830.   {"skip_external_locking",   (char*) &my_disable_locking,          SHOW_MY_BOOL},
  831.   {"skip_networking",         (char*) &opt_disable_networking,      SHOW_BOOL},
  832.   {"skip_show_database",      (char*) &opt_skip_show_db,            SHOW_BOOL},
  833. #ifdef HAVE_REPLICATION
  834.   {sys_slave_net_timeout.name,(char*) &sys_slave_net_timeout,     SHOW_SYS},
  835.   {sys_slave_trans_retries.name,(char*) &sys_slave_trans_retries,   SHOW_SYS},
  836. #endif
  837.   {sys_slow_launch_time.name, (char*) &sys_slow_launch_time,        SHOW_SYS},
  838. #ifdef HAVE_SYS_UN_H
  839.   {"socket",                  (char*) &mysqld_unix_port,             SHOW_CHAR_PTR},
  840. #endif
  841.   {sys_sort_buffer.name,      (char*) &sys_sort_buffer,      SHOW_SYS},
  842.   {sys_sql_mode.name,         (char*) &sys_sql_mode,                SHOW_SYS},
  843.   {"sql_notes",               (char*) &sys_sql_notes,               SHOW_BOOL},
  844.   {"sql_warnings",            (char*) &sys_sql_warnings,            SHOW_BOOL},
  845.   {sys_storage_engine.name,   (char*) &sys_storage_engine,          SHOW_SYS},
  846. #ifdef HAVE_REPLICATION
  847.   {sys_sync_binlog_period.name,(char*) &sys_sync_binlog_period,     SHOW_SYS},
  848. #endif
  849.   {sys_sync_frm.name,         (char*) &sys_sync_frm,               SHOW_SYS},
  850. #ifdef HAVE_REPLICATION
  851.   {sys_sync_replication.name, (char*) &sys_sync_replication,        SHOW_SYS},
  852.   {sys_sync_replication_slave_id.name, (char*) &sys_sync_replication_slave_id,SHOW_SYS},
  853.   {sys_sync_replication_timeout.name, (char*) &sys_sync_replication_timeout,SHOW_SYS},
  854. #endif
  855. #ifdef HAVE_TZNAME
  856.   {"system_time_zone",        system_time_zone,                     SHOW_CHAR},
  857. #endif
  858.   {"table_cache",             (char*) &table_cache_size,            SHOW_LONG},
  859.   {sys_table_type.name,       (char*) &sys_table_type,             SHOW_SYS},
  860.   {sys_thread_cache_size.name,(char*) &sys_thread_cache_size,       SHOW_SYS},
  861. #ifdef HAVE_THR_SETCONCURRENCY
  862.   {"thread_concurrency",      (char*) &concurrency,                 SHOW_LONG},
  863. #endif
  864.   {"thread_stack",            (char*) &thread_stack,                SHOW_LONG},
  865.   {sys_time_format.name,      (char*) &sys_time_format,     SHOW_SYS},
  866.   {"time_zone",               (char*) &sys_time_zone,               SHOW_SYS},
  867.   {sys_tmp_table_size.name,   (char*) &sys_tmp_table_size,     SHOW_SYS},
  868.   {"tmpdir",                  (char*) &opt_mysql_tmpdir,            SHOW_CHAR_PTR},
  869.   {sys_trans_alloc_block_size.name, (char*) &sys_trans_alloc_block_size,
  870.    SHOW_SYS},
  871.   {sys_trans_prealloc_size.name, (char*) &sys_trans_prealloc_size,  SHOW_SYS},
  872.   {sys_tx_isolation.name,     (char*) &sys_tx_isolation,     SHOW_SYS},
  873.   {"version",                 server_version,                       SHOW_CHAR},
  874. #ifdef HAVE_BERKELEY_DB
  875.   {"version_bdb",             (char*) DB_VERSION_STRING,            SHOW_CHAR},
  876. #endif
  877.   {"version_comment",         (char*) MYSQL_COMPILATION_COMMENT,    SHOW_CHAR},
  878.   {"version_compile_machine", (char*) MACHINE_TYPE,     SHOW_CHAR},
  879.   {sys_os.name,       (char*) &sys_os,     SHOW_SYS},
  880.   {sys_net_wait_timeout.name, (char*) &sys_net_wait_timeout,     SHOW_SYS},
  881.   {NullS, NullS, SHOW_LONG}
  882. };
  883. bool sys_var::check(THD *thd, set_var *var)
  884. {
  885.   var->save_result.ulonglong_value= var->value->val_int();
  886.   return 0;
  887. }
  888. bool sys_var_str::check(THD *thd, set_var *var)
  889. {
  890.   int res;
  891.   if (!check_func)
  892.     return 0;
  893.   if ((res=(*check_func)(thd, var)) < 0)
  894.     my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), name,
  895.              var->value->str_value.ptr());
  896.   return res;
  897. }
  898. /*
  899.   Functions to check and update variables
  900. */
  901. /*
  902.   Update variables 'init_connect, init_slave'.
  903.   In case of 'DEFAULT' value
  904.   (for example: 'set GLOBAL init_connect=DEFAULT')
  905.   'var' parameter is NULL pointer.
  906. */
  907. bool update_sys_var_str(sys_var_str *var_str, rw_lock_t *var_mutex,
  908. set_var *var)
  909. {
  910.   char *res= 0, *old_value=(char *)(var ? var->value->str_value.ptr() : 0);
  911.   uint new_length= (var ? var->value->str_value.length() : 0);
  912.   if (!old_value)
  913.     old_value= (char*) "";
  914.   if (!(res= my_strdup_with_length((byte*)old_value, new_length, MYF(0))))
  915.     return 1;
  916.   /*
  917.     Replace the old value in such a way that the any thread using
  918.     the value will work.
  919.   */
  920.   rw_wrlock(var_mutex);
  921.   old_value= var_str->value;
  922.   var_str->value= res;
  923.   var_str->value_length= new_length;
  924.   rw_unlock(var_mutex);
  925.   my_free(old_value, MYF(MY_ALLOW_ZERO_PTR));
  926.   return 0;
  927. }
  928. static bool sys_update_init_connect(THD *thd, set_var *var)
  929. {
  930.   return update_sys_var_str(&sys_init_connect, &LOCK_sys_init_connect, var);
  931. }
  932. static void sys_default_init_connect(THD* thd, enum_var_type type)
  933. {
  934.   update_sys_var_str(&sys_init_connect, &LOCK_sys_init_connect, 0);
  935. }
  936. static bool sys_update_init_slave(THD *thd, set_var *var)
  937. {
  938.   return update_sys_var_str(&sys_init_slave, &LOCK_sys_init_slave, var);
  939. }
  940. static void sys_default_init_slave(THD* thd, enum_var_type type)
  941. {
  942.   update_sys_var_str(&sys_init_slave, &LOCK_sys_init_slave, 0);
  943. }
  944. static int sys_check_ftb_syntax(THD *thd,  set_var *var)
  945. {
  946.   if (thd->master_access & SUPER_ACL)
  947.     return ft_boolean_check_syntax_string((byte*) var->value->str_value.c_ptr()) ?
  948.       -1 : 0;
  949.   else
  950.   {
  951.     my_error(ER_SPECIFIC_ACCESS_DENIED_ERROR, MYF(0), "SUPER");
  952.     return 1;
  953.   }
  954. }
  955. static bool sys_update_ftb_syntax(THD *thd, set_var * var)
  956. {
  957.   strmake(ft_boolean_syntax, var->value->str_value.c_ptr(),
  958.   sizeof(ft_boolean_syntax)-1);
  959.   return 0;
  960. }
  961. static void sys_default_ftb_syntax(THD *thd, enum_var_type type)
  962. {
  963.   strmake(ft_boolean_syntax, def_ft_boolean_syntax,
  964.   sizeof(ft_boolean_syntax)-1);
  965. }
  966. /*
  967.   The following 3 functions need to be changed in 4.1 when we allow
  968.   one to change character sets
  969. */
  970. static int sys_check_charset(THD *thd, set_var *var)
  971. {
  972.   return 0;
  973. }
  974. static bool sys_update_charset(THD *thd, set_var *var)
  975. {
  976.   return 0;
  977. }
  978. static void sys_set_default_charset(THD *thd, enum_var_type type)
  979. {
  980. }
  981. /*
  982.   If one sets the LOW_PRIORIY UPDATES flag, we also must change the
  983.   used lock type
  984. */
  985. static void fix_low_priority_updates(THD *thd, enum_var_type type)
  986. {
  987.   if (type != OPT_GLOBAL)
  988.     thd->update_lock_default= (thd->variables.low_priority_updates ?
  989.        TL_WRITE_LOW_PRIORITY : TL_WRITE);
  990. }
  991. static void
  992. fix_myisam_max_extra_sort_file_size(THD *thd, enum_var_type type)
  993. {
  994.   myisam_max_extra_temp_length=
  995.     (my_off_t) global_system_variables.myisam_max_extra_sort_file_size;
  996. }
  997. static void
  998. fix_myisam_max_sort_file_size(THD *thd, enum_var_type type)
  999. {
  1000.   myisam_max_temp_length=
  1001.     (my_off_t) global_system_variables.myisam_max_sort_file_size;
  1002. }
  1003. /*
  1004.   Set the OPTION_BIG_SELECTS flag if max_join_size == HA_POS_ERROR
  1005. */
  1006. static void fix_max_join_size(THD *thd, enum_var_type type)
  1007. {
  1008.   if (type != OPT_GLOBAL)
  1009.   {
  1010.     if (thd->variables.max_join_size == HA_POS_ERROR)
  1011.       thd->options|= OPTION_BIG_SELECTS;
  1012.     else
  1013.       thd->options&= ~OPTION_BIG_SELECTS;
  1014.   }
  1015. }
  1016. /*
  1017.   If one doesn't use the SESSION modifier, the isolation level
  1018.   is only active for the next command
  1019. */
  1020. static void fix_tx_isolation(THD *thd, enum_var_type type)
  1021. {
  1022.   if (type == OPT_SESSION)
  1023.     thd->session_tx_isolation= ((enum_tx_isolation)
  1024. thd->variables.tx_isolation);
  1025. }
  1026. /*
  1027.   If we are changing the thread variable, we have to copy it to NET too
  1028. */
  1029. #ifdef HAVE_REPLICATION
  1030. static void fix_net_read_timeout(THD *thd, enum_var_type type)
  1031. {
  1032.   if (type != OPT_GLOBAL)
  1033.     thd->net.read_timeout=thd->variables.net_read_timeout;
  1034. }
  1035. static void fix_net_write_timeout(THD *thd, enum_var_type type)
  1036. {
  1037.   if (type != OPT_GLOBAL)
  1038.     thd->net.write_timeout=thd->variables.net_write_timeout;
  1039. }
  1040. static void fix_net_retry_count(THD *thd, enum_var_type type)
  1041. {
  1042.   if (type != OPT_GLOBAL)
  1043.     thd->net.retry_count=thd->variables.net_retry_count;
  1044. }
  1045. #else /* HAVE_REPLICATION */
  1046. static void fix_net_read_timeout(THD *thd __attribute__(unused),
  1047.  enum_var_type type __attribute__(unused))
  1048. {}
  1049. static void fix_net_write_timeout(THD *thd __attribute__(unused),
  1050.   enum_var_type type __attribute__(unused))
  1051. {}
  1052. static void fix_net_retry_count(THD *thd __attribute__(unused),
  1053. enum_var_type type __attribute__(unused))
  1054. {}
  1055. #endif /* HAVE_REPLICATION */
  1056. static void fix_query_cache_size(THD *thd, enum_var_type type)
  1057. {
  1058. #ifdef HAVE_QUERY_CACHE
  1059.   ulong requested= query_cache_size;
  1060.   query_cache.resize(query_cache_size);
  1061.   if (requested != query_cache_size)
  1062.     push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
  1063. ER_WARN_QC_RESIZE, ER(ER_WARN_QC_RESIZE),
  1064. requested, query_cache_size);
  1065. #endif
  1066. }
  1067. #ifdef HAVE_QUERY_CACHE
  1068. static void fix_query_cache_min_res_unit(THD *thd, enum_var_type type)
  1069. {
  1070.   query_cache_min_res_unit= 
  1071.     query_cache.set_min_res_unit(query_cache_min_res_unit);
  1072. }
  1073. #endif
  1074. extern void fix_delay_key_write(THD *thd, enum_var_type type)
  1075. {
  1076.   switch ((enum_delay_key_write) delay_key_write_options) {
  1077.   case DELAY_KEY_WRITE_NONE:
  1078.     myisam_delay_key_write=0;
  1079.     break;
  1080.   case DELAY_KEY_WRITE_ON:
  1081.     myisam_delay_key_write=1;
  1082.     break;
  1083.   case DELAY_KEY_WRITE_ALL:
  1084.     myisam_delay_key_write=1;
  1085.     ha_open_options|= HA_OPEN_DELAY_KEY_WRITE;
  1086.     break;
  1087.   }
  1088. }
  1089. static void fix_max_binlog_size(THD *thd, enum_var_type type)
  1090. {
  1091.   DBUG_ENTER("fix_max_binlog_size");
  1092.   DBUG_PRINT("info",("max_binlog_size=%lu max_relay_log_size=%lu",
  1093.                      max_binlog_size, max_relay_log_size));
  1094.   mysql_bin_log.set_max_size(max_binlog_size);
  1095. #ifdef HAVE_REPLICATION
  1096.   if (!max_relay_log_size)
  1097.     active_mi->rli.relay_log.set_max_size(max_binlog_size);
  1098. #endif
  1099.   DBUG_VOID_RETURN;
  1100. }
  1101. static void fix_max_relay_log_size(THD *thd, enum_var_type type)
  1102. {
  1103.   DBUG_ENTER("fix_max_relay_log_size");
  1104.   DBUG_PRINT("info",("max_binlog_size=%lu max_relay_log_size=%lu",
  1105.                      max_binlog_size, max_relay_log_size));
  1106. #ifdef HAVE_REPLICATION
  1107.   active_mi->rli.relay_log.set_max_size(max_relay_log_size ?
  1108.                                         max_relay_log_size: max_binlog_size);
  1109. #endif
  1110.   DBUG_VOID_RETURN;
  1111. }
  1112. static int check_max_delayed_threads(THD *thd, set_var *var)
  1113. {
  1114.   longlong val= var->value->val_int();
  1115.   if (var->type != OPT_GLOBAL && val != 0 &&
  1116.       val != (longlong) global_system_variables.max_insert_delayed_threads)
  1117.   {
  1118.     char buf[64];
  1119.     my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), var->var->name, llstr(val, buf));
  1120.     return 1;
  1121.   }
  1122.   return 0;
  1123. }
  1124. static void fix_max_connections(THD *thd, enum_var_type type)
  1125. {
  1126. #ifndef EMBEDDED_LIBRARY
  1127.   resize_thr_alarm(max_connections + 
  1128.    global_system_variables.max_insert_delayed_threads + 10);
  1129. #endif
  1130. }
  1131. static void fix_thd_mem_root(THD *thd, enum_var_type type)
  1132. {
  1133.   if (type != OPT_GLOBAL)
  1134.     reset_root_defaults(thd->mem_root,
  1135.                         thd->variables.query_alloc_block_size,
  1136.                         thd->variables.query_prealloc_size);
  1137. }
  1138. static void fix_trans_mem_root(THD *thd, enum_var_type type)
  1139. {
  1140.   if (type != OPT_GLOBAL)
  1141.     reset_root_defaults(&thd->transaction.mem_root,
  1142.                         thd->variables.trans_alloc_block_size,
  1143.                         thd->variables.trans_prealloc_size);
  1144. }
  1145. static void fix_server_id(THD *thd, enum_var_type type)
  1146. {
  1147.   server_id_supplied = 1;
  1148. }
  1149. bool sys_var_long_ptr::check(THD *thd, set_var *var)
  1150. {
  1151.   longlong v= var->value->val_int();
  1152.   var->save_result.ulonglong_value= v < 0 ? 0 : v;
  1153.   return 0;
  1154. }
  1155. bool sys_var_long_ptr::update(THD *thd, set_var *var)
  1156. {
  1157.   ulonglong tmp= var->save_result.ulonglong_value;
  1158.   pthread_mutex_lock(&LOCK_global_system_variables);
  1159.   if (option_limits)
  1160.     *value= (ulong) getopt_ull_limit_value(tmp, option_limits);
  1161.   else
  1162.     *value= (ulong) tmp;
  1163.   pthread_mutex_unlock(&LOCK_global_system_variables);
  1164.   return 0;
  1165. }
  1166. void sys_var_long_ptr::set_default(THD *thd, enum_var_type type)
  1167. {
  1168.   *value= (ulong) option_limits->def_value;
  1169. }
  1170. bool sys_var_ulonglong_ptr::update(THD *thd, set_var *var)
  1171. {
  1172.   ulonglong tmp= var->save_result.ulonglong_value;
  1173.   pthread_mutex_lock(&LOCK_global_system_variables);
  1174.   if (option_limits)
  1175.     *value= (ulonglong) getopt_ull_limit_value(tmp, option_limits);
  1176.   else
  1177.     *value= (ulonglong) tmp;
  1178.   pthread_mutex_unlock(&LOCK_global_system_variables);
  1179.   return 0;
  1180. }
  1181. void sys_var_ulonglong_ptr::set_default(THD *thd, enum_var_type type)
  1182. {
  1183.   pthread_mutex_lock(&LOCK_global_system_variables);
  1184.   *value= (ulonglong) option_limits->def_value;
  1185.   pthread_mutex_unlock(&LOCK_global_system_variables);
  1186. }
  1187. bool sys_var_bool_ptr::update(THD *thd, set_var *var)
  1188. {
  1189.   *value= (my_bool) var->save_result.ulong_value;
  1190.   return 0;
  1191. }
  1192. void sys_var_bool_ptr::set_default(THD *thd, enum_var_type type)
  1193. {
  1194.   *value= (my_bool) option_limits->def_value;
  1195. }
  1196. bool sys_var_enum::update(THD *thd, set_var *var)
  1197. {
  1198.   *value= (uint) var->save_result.ulong_value;
  1199.   return 0;
  1200. }
  1201. byte *sys_var_enum::value_ptr(THD *thd, enum_var_type type, LEX_STRING *base)
  1202. {
  1203.   return (byte*) enum_names->type_names[*value];
  1204. }
  1205. bool sys_var_thd_ulong::check(THD *thd, set_var *var)
  1206. {
  1207.   return (sys_var_thd::check(thd, var) ||
  1208.           (check_func && (*check_func)(thd, var)));
  1209. }
  1210. bool sys_var_thd_ulong::update(THD *thd, set_var *var)
  1211. {
  1212.   ulonglong tmp= var->save_result.ulonglong_value;
  1213.   /* Don't use bigger value than given with --maximum-variable-name=.. */
  1214.   if ((ulong) tmp > max_system_variables.*offset)
  1215.     tmp= max_system_variables.*offset;
  1216.   if (option_limits)
  1217.     tmp= (ulong) getopt_ull_limit_value(tmp, option_limits);
  1218.   if (var->type == OPT_GLOBAL)
  1219.     global_system_variables.*offset= (ulong) tmp;
  1220.   else
  1221.     thd->variables.*offset= (ulong) tmp;
  1222.   return 0;
  1223. }
  1224. void sys_var_thd_ulong::set_default(THD *thd, enum_var_type type)
  1225. {
  1226.   if (type == OPT_GLOBAL)
  1227.   {
  1228.     /* We will not come here if option_limits is not set */
  1229.     global_system_variables.*offset= (ulong) option_limits->def_value;
  1230.   }
  1231.   else
  1232.     thd->variables.*offset= global_system_variables.*offset;
  1233. }
  1234. byte *sys_var_thd_ulong::value_ptr(THD *thd, enum_var_type type,
  1235.    LEX_STRING *base)
  1236. {
  1237.   if (type == OPT_GLOBAL)
  1238.     return (byte*) &(global_system_variables.*offset);
  1239.   return (byte*) &(thd->variables.*offset);
  1240. }
  1241. bool sys_var_thd_ha_rows::update(THD *thd, set_var *var)
  1242. {
  1243.   ulonglong tmp= var->save_result.ulonglong_value;
  1244.   /* Don't use bigger value than given with --maximum-variable-name=.. */
  1245.   if ((ha_rows) tmp > max_system_variables.*offset)
  1246.     tmp= max_system_variables.*offset;
  1247.   if (option_limits)
  1248.     tmp= (ha_rows) getopt_ull_limit_value(tmp, option_limits);
  1249.   if (var->type == OPT_GLOBAL)
  1250.   {
  1251.     /* Lock is needed to make things safe on 32 bit systems */
  1252.     pthread_mutex_lock(&LOCK_global_system_variables);    
  1253.     global_system_variables.*offset= (ha_rows) tmp;
  1254.     pthread_mutex_unlock(&LOCK_global_system_variables);
  1255.   }
  1256.   else
  1257.     thd->variables.*offset= (ha_rows) tmp;
  1258.   return 0;
  1259. }
  1260. void sys_var_thd_ha_rows::set_default(THD *thd, enum_var_type type)
  1261. {
  1262.   if (type == OPT_GLOBAL)
  1263.   {
  1264.     /* We will not come here if option_limits is not set */
  1265.     pthread_mutex_lock(&LOCK_global_system_variables);
  1266.     global_system_variables.*offset= (ha_rows) option_limits->def_value;
  1267.     pthread_mutex_unlock(&LOCK_global_system_variables);
  1268.   }
  1269.   else
  1270.     thd->variables.*offset= global_system_variables.*offset;
  1271. }
  1272. byte *sys_var_thd_ha_rows::value_ptr(THD *thd, enum_var_type type,
  1273.      LEX_STRING *base)
  1274. {
  1275.   if (type == OPT_GLOBAL)
  1276.     return (byte*) &(global_system_variables.*offset);
  1277.   return (byte*) &(thd->variables.*offset);
  1278. }
  1279. bool sys_var_thd_ulonglong::update(THD *thd,  set_var *var)
  1280. {
  1281.   ulonglong tmp= var->save_result.ulonglong_value;
  1282.   if (tmp > max_system_variables.*offset)
  1283.     tmp= max_system_variables.*offset;
  1284.   if (option_limits)
  1285.     tmp= getopt_ull_limit_value(tmp, option_limits);
  1286.   if (var->type == OPT_GLOBAL)
  1287.   {
  1288.     /* Lock is needed to make things safe on 32 bit systems */
  1289.     pthread_mutex_lock(&LOCK_global_system_variables);
  1290.     global_system_variables.*offset= (ulonglong) tmp;
  1291.     pthread_mutex_unlock(&LOCK_global_system_variables);
  1292.   }
  1293.   else
  1294.     thd->variables.*offset= (ulonglong) tmp;
  1295.   return 0;
  1296. }
  1297. void sys_var_thd_ulonglong::set_default(THD *thd, enum_var_type type)
  1298. {
  1299.   if (type == OPT_GLOBAL)
  1300.   {
  1301.     pthread_mutex_lock(&LOCK_global_system_variables);
  1302.     global_system_variables.*offset= (ulonglong) option_limits->def_value;
  1303.     pthread_mutex_unlock(&LOCK_global_system_variables);
  1304.   }
  1305.   else
  1306.     thd->variables.*offset= global_system_variables.*offset;
  1307. }
  1308. byte *sys_var_thd_ulonglong::value_ptr(THD *thd, enum_var_type type,
  1309.        LEX_STRING *base)
  1310. {
  1311.   if (type == OPT_GLOBAL)
  1312.     return (byte*) &(global_system_variables.*offset);
  1313.   return (byte*) &(thd->variables.*offset);
  1314. }
  1315. bool sys_var_thd_bool::update(THD *thd,  set_var *var)
  1316. {
  1317.   if (var->type == OPT_GLOBAL)
  1318.     global_system_variables.*offset= (my_bool) var->save_result.ulong_value;
  1319.   else
  1320.     thd->variables.*offset= (my_bool) var->save_result.ulong_value;
  1321.   return 0;
  1322. }
  1323. void sys_var_thd_bool::set_default(THD *thd,  enum_var_type type)
  1324. {
  1325.   if (type == OPT_GLOBAL)
  1326.     global_system_variables.*offset= (my_bool) option_limits->def_value;
  1327.   else
  1328.     thd->variables.*offset= global_system_variables.*offset;
  1329. }
  1330. byte *sys_var_thd_bool::value_ptr(THD *thd, enum_var_type type,
  1331.   LEX_STRING *base)
  1332. {
  1333.   if (type == OPT_GLOBAL)
  1334.     return (byte*) &(global_system_variables.*offset);
  1335.   return (byte*) &(thd->variables.*offset);
  1336. }
  1337. bool sys_var::check_enum(THD *thd, set_var *var, TYPELIB *enum_names)
  1338. {
  1339.   char buff[80];
  1340.   const char *value;
  1341.   String str(buff, sizeof(buff), system_charset_info), *res;
  1342.   if (var->value->result_type() == STRING_RESULT)
  1343.   {
  1344.     if (!(res=var->value->val_str(&str)) ||
  1345. ((long) (var->save_result.ulong_value=
  1346.  (ulong) find_type(enum_names, res->ptr(),
  1347.    res->length(),1)-1)) < 0)
  1348.     {
  1349.       value= res ? res->c_ptr() : "NULL";
  1350.       goto err;
  1351.     }
  1352.   }
  1353.   else
  1354.   {
  1355.     ulonglong tmp=var->value->val_int();
  1356.     if (tmp >= enum_names->count)
  1357.     {
  1358.       llstr(tmp,buff);
  1359.       value=buff; // Wrong value is here
  1360.       goto err;
  1361.     }
  1362.     var->save_result.ulong_value= (ulong) tmp; // Save for update
  1363.   }
  1364.   return 0;
  1365. err:
  1366.   my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), name, value);
  1367.   return 1;
  1368. }
  1369. bool sys_var::check_set(THD *thd, set_var *var, TYPELIB *enum_names)
  1370. {
  1371.   bool not_used;
  1372.   char buff[80], *error= 0;
  1373.   uint error_len= 0;
  1374.   String str(buff, sizeof(buff), system_charset_info), *res;
  1375.   if (var->value->result_type() == STRING_RESULT)
  1376.   {
  1377.     if (!(res= var->value->val_str(&str)))
  1378.     {
  1379.       strmov(buff, "NULL");
  1380.       goto err;
  1381.     }
  1382.     var->save_result.ulong_value= ((ulong)
  1383.    find_set(enum_names, res->c_ptr(),
  1384.     res->length(),
  1385.                                             NULL,
  1386.                                             &error, &error_len,
  1387.     &not_used));
  1388.     if (error_len)
  1389.     {
  1390.       strmake(buff, error, min(sizeof(buff), error_len));
  1391.       goto err;
  1392.     }
  1393.   }
  1394.   else
  1395.   {
  1396.     ulonglong tmp= var->value->val_int();
  1397.     if (tmp >= enum_names->count)
  1398.     {
  1399.       llstr(tmp, buff);
  1400.       goto err;
  1401.     }
  1402.     var->save_result.ulong_value= (ulong) tmp;  // Save for update
  1403.   }
  1404.   return 0;
  1405. err:
  1406.   my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), name, buff);
  1407.   return 1;
  1408. }
  1409. /*
  1410.   Return an Item for a variable.  Used with @@[global.]variable_name
  1411.   If type is not given, return local value if exists, else global
  1412. */
  1413. Item *sys_var::item(THD *thd, enum_var_type var_type, LEX_STRING *base)
  1414. {
  1415.   if (check_type(var_type))
  1416.   {
  1417.     if (var_type != OPT_DEFAULT)
  1418.     {
  1419.       my_error(ER_INCORRECT_GLOBAL_LOCAL_VAR, MYF(0),
  1420.                name, var_type == OPT_GLOBAL ? "SESSION" : "GLOBAL");
  1421.       return 0;
  1422.     }
  1423.     /* As there was no local variable, return the global value */
  1424.     var_type= OPT_GLOBAL;
  1425.   }
  1426.   switch (type()) {
  1427.   case SHOW_LONG:
  1428.   {
  1429.     ulong value;
  1430.     pthread_mutex_lock(&LOCK_global_system_variables);
  1431.     value= *(ulong*) value_ptr(thd, var_type, base);
  1432.     pthread_mutex_unlock(&LOCK_global_system_variables);
  1433.     return new Item_uint((int32) value);
  1434.   }
  1435.   case SHOW_LONGLONG:
  1436.   {
  1437.     longlong value;
  1438.     pthread_mutex_lock(&LOCK_global_system_variables);
  1439.     value= *(longlong*) value_ptr(thd, var_type, base);
  1440.     pthread_mutex_unlock(&LOCK_global_system_variables);
  1441.     return new Item_int(value);
  1442.   }
  1443.   case SHOW_HA_ROWS:
  1444.   {
  1445.     ha_rows value;
  1446.     pthread_mutex_lock(&LOCK_global_system_variables);
  1447.     value= *(ha_rows*) value_ptr(thd, var_type, base);
  1448.     pthread_mutex_unlock(&LOCK_global_system_variables);
  1449.     return new Item_int((longlong) value);
  1450.   }
  1451.   case SHOW_MY_BOOL:
  1452.     return new Item_int((int32) *(my_bool*) value_ptr(thd, var_type, base),1);
  1453.   case SHOW_CHAR:
  1454.   {
  1455.     Item *tmp;
  1456.     pthread_mutex_lock(&LOCK_global_system_variables);
  1457.     char *str= (char*) value_ptr(thd, var_type, base);
  1458.     if (str)
  1459.       tmp= new Item_string(str, strlen(str),
  1460.                            system_charset_info, DERIVATION_SYSCONST);
  1461.     else
  1462.     {
  1463.       tmp= new Item_null();
  1464.       tmp->collation.set(system_charset_info, DERIVATION_SYSCONST);
  1465.     }
  1466.     pthread_mutex_unlock(&LOCK_global_system_variables);
  1467.     return tmp;
  1468.   }
  1469.   default:
  1470.     my_error(ER_VAR_CANT_BE_READ, MYF(0), name);
  1471.   }
  1472.   return 0;
  1473. }
  1474. bool sys_var_thd_enum::update(THD *thd, set_var *var)
  1475. {
  1476.   if (var->type == OPT_GLOBAL)
  1477.     global_system_variables.*offset= var->save_result.ulong_value;
  1478.   else
  1479.     thd->variables.*offset= var->save_result.ulong_value;
  1480.   return 0;
  1481. }
  1482. void sys_var_thd_enum::set_default(THD *thd, enum_var_type type)
  1483. {
  1484.   if (type == OPT_GLOBAL)
  1485.     global_system_variables.*offset= (ulong) option_limits->def_value;
  1486.   else
  1487.     thd->variables.*offset= global_system_variables.*offset;
  1488. }
  1489. byte *sys_var_thd_enum::value_ptr(THD *thd, enum_var_type type,
  1490.   LEX_STRING *base)
  1491. {
  1492.   ulong tmp= ((type == OPT_GLOBAL) ?
  1493.       global_system_variables.*offset :
  1494.       thd->variables.*offset);
  1495.   return (byte*) enum_names->type_names[tmp];
  1496. }
  1497. bool sys_var_thd_bit::check(THD *thd, set_var *var)
  1498. {
  1499.   return (check_enum(thd, var, &bool_typelib) ||
  1500.           (check_func && (*check_func)(thd, var)));
  1501. }
  1502. bool sys_var_thd_bit::update(THD *thd, set_var *var)
  1503. {
  1504.   int res= (*update_func)(thd, var);
  1505.   return res;
  1506. }
  1507. byte *sys_var_thd_bit::value_ptr(THD *thd, enum_var_type type,
  1508.  LEX_STRING *base)
  1509. {
  1510.   /*
  1511.     If reverse is 0 (default) return 1 if bit is set.
  1512.     If reverse is 1, return 0 if bit is set
  1513.   */
  1514.   thd->sys_var_tmp.my_bool_value= ((thd->options & bit_flag) ?
  1515.    !reverse : reverse);
  1516.   return (byte*) &thd->sys_var_tmp.my_bool_value;
  1517. }
  1518. /* Update a date_time format variable based on given value */
  1519. void sys_var_thd_date_time_format::update2(THD *thd, enum_var_type type,
  1520.    DATE_TIME_FORMAT *new_value)
  1521. {
  1522.   DATE_TIME_FORMAT *old;
  1523.   DBUG_ENTER("sys_var_date_time_format::update2");
  1524.   DBUG_DUMP("positions",(char*) new_value->positions,
  1525.     sizeof(new_value->positions));
  1526.   if (type == OPT_GLOBAL)
  1527.   {
  1528.     pthread_mutex_lock(&LOCK_global_system_variables);
  1529.     old= (global_system_variables.*offset);
  1530.     (global_system_variables.*offset)= new_value;
  1531.     pthread_mutex_unlock(&LOCK_global_system_variables);
  1532.   }
  1533.   else
  1534.   {
  1535.     old= (thd->variables.*offset);
  1536.     (thd->variables.*offset)= new_value;
  1537.   }
  1538.   my_free((char*) old, MYF(MY_ALLOW_ZERO_PTR));
  1539.   DBUG_VOID_RETURN;
  1540. }
  1541. bool sys_var_thd_date_time_format::update(THD *thd, set_var *var)
  1542. {
  1543.   DATE_TIME_FORMAT *new_value;
  1544.   /* We must make a copy of the last value to get it into normal memory */
  1545.   new_value= date_time_format_copy((THD*) 0,
  1546.    var->save_result.date_time_format);
  1547.   if (!new_value)
  1548.     return 1; // Out of memory
  1549.   update2(thd, var->type, new_value); // Can't fail
  1550.   return 0;
  1551. }
  1552. bool sys_var_thd_date_time_format::check(THD *thd, set_var *var)
  1553. {
  1554.   char buff[80];
  1555.   String str(buff,sizeof(buff), system_charset_info), *res;
  1556.   DATE_TIME_FORMAT *format;
  1557.   if (!(res=var->value->val_str(&str)))
  1558.     res= &my_empty_string;
  1559.   if (!(format= date_time_format_make(date_time_type,
  1560.       res->ptr(), res->length())))
  1561.   {
  1562.     my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), name, res->c_ptr());
  1563.     return 1;
  1564.   }
  1565.   
  1566.   /*
  1567.     We must copy result to thread space to not get a memory leak if
  1568.     update is aborted
  1569.   */
  1570.   var->save_result.date_time_format= date_time_format_copy(thd, format);
  1571.   my_free((char*) format, MYF(0));
  1572.   return var->save_result.date_time_format == 0;
  1573. }
  1574. void sys_var_thd_date_time_format::set_default(THD *thd, enum_var_type type)
  1575. {
  1576.   DATE_TIME_FORMAT *res= 0;
  1577.   if (type == OPT_GLOBAL)
  1578.   {
  1579.     const char *format;
  1580.     if ((format= opt_date_time_formats[date_time_type]))
  1581.       res= date_time_format_make(date_time_type, format, strlen(format));
  1582.   }
  1583.   else
  1584.   {
  1585.     /* Make copy with malloc */
  1586.     res= date_time_format_copy((THD *) 0, global_system_variables.*offset);
  1587.   }
  1588.   if (res) // Should always be true
  1589.     update2(thd, type, res);
  1590. }
  1591. byte *sys_var_thd_date_time_format::value_ptr(THD *thd, enum_var_type type,
  1592.       LEX_STRING *base)
  1593. {
  1594.   if (type == OPT_GLOBAL)
  1595.   {
  1596.     char *res;
  1597.     /*
  1598.       We do a copy here just to be sure things will work even if someone
  1599.       is modifying the original string while the copy is accessed
  1600.       (Can't happen now in SQL SHOW, but this is a good safety for the future)
  1601.     */
  1602.     res= thd->strmake((global_system_variables.*offset)->format.str,
  1603.       (global_system_variables.*offset)->format.length);
  1604.     return (byte*) res;
  1605.   }
  1606.   return (byte*) (thd->variables.*offset)->format.str;
  1607. }
  1608. typedef struct old_names_map_st
  1609. {
  1610.   const char *old_name;
  1611.   const char *new_name;
  1612. } my_old_conv;
  1613. static my_old_conv old_conv[]= 
  1614. {
  1615.   { "cp1251_koi8" , "cp1251" },
  1616.   { "cp1250_latin2" , "cp1250" },
  1617.   { "kam_latin2" , "keybcs2" },
  1618.   { "mac_latin2" , "MacRoman" },
  1619.   { "macce_latin2" , "MacCE" },
  1620.   { "pc2_latin2" , "pclatin2" },
  1621.   { "vga_latin2" , "pclatin1" },
  1622.   { "koi8_cp1251" , "koi8r" },
  1623.   { "win1251ukr_koi8_ukr" , "win1251ukr" },
  1624.   { "koi8_ukr_win1251ukr" , "koi8u" },
  1625.   { NULL , NULL }
  1626. };
  1627. CHARSET_INFO *get_old_charset_by_name(const char *name)
  1628. {
  1629.   my_old_conv *conv;
  1630.  
  1631.   for (conv= old_conv; conv->old_name; conv++)
  1632.   {
  1633.     if (!my_strcasecmp(&my_charset_latin1, name, conv->old_name))
  1634.       return get_charset_by_csname(conv->new_name, MY_CS_PRIMARY, MYF(0));
  1635.   }
  1636.   return NULL;
  1637. }
  1638. bool sys_var_collation::check(THD *thd, set_var *var)
  1639. {
  1640.   CHARSET_INFO *tmp;
  1641.   if (var->value->result_type() == STRING_RESULT)
  1642.   {
  1643.     char buff[80];
  1644.     String str(buff,sizeof(buff), system_charset_info), *res;
  1645.     if (!(res=var->value->val_str(&str)))
  1646.     {
  1647.       my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), name, "NULL");
  1648.       return 1;
  1649.     }
  1650.     if (!(tmp=get_charset_by_name(res->c_ptr(),MYF(0))))
  1651.     {
  1652.       my_error(ER_UNKNOWN_COLLATION, MYF(0), res->c_ptr());
  1653.       return 1;
  1654.     }
  1655.   }
  1656.   else // INT_RESULT
  1657.   {
  1658.     if (!(tmp=get_charset((int) var->value->val_int(),MYF(0))))
  1659.     {
  1660.       char buf[20];
  1661.       int10_to_str((int) var->value->val_int(), buf, -10);
  1662.       my_error(ER_UNKNOWN_COLLATION, MYF(0), buf);
  1663.       return 1;
  1664.     }
  1665.   }
  1666.   var->save_result.charset= tmp; // Save for update
  1667.   return 0;
  1668. }
  1669. bool sys_var_character_set::check(THD *thd, set_var *var)
  1670. {
  1671.   CHARSET_INFO *tmp;
  1672.   if (var->value->result_type() == STRING_RESULT)
  1673.   {
  1674.     char buff[80];
  1675.     String str(buff,sizeof(buff), system_charset_info), *res;
  1676.     if (!(res=var->value->val_str(&str)))
  1677.     {
  1678.       if (!nullable)
  1679.       {
  1680.         my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), name, "NULL");
  1681.         return 1;
  1682.       }
  1683.       tmp= NULL;
  1684.     }
  1685.     else if (!(tmp=get_charset_by_csname(res->c_ptr(),MY_CS_PRIMARY,MYF(0))) &&
  1686.              !(tmp=get_old_charset_by_name(res->c_ptr())))
  1687.     {
  1688.       my_error(ER_UNKNOWN_CHARACTER_SET, MYF(0), res->c_ptr());
  1689.       return 1;
  1690.     }
  1691.   }
  1692.   else // INT_RESULT
  1693.   {
  1694.     if (!(tmp=get_charset((int) var->value->val_int(),MYF(0))))
  1695.     {
  1696.       char buf[20];
  1697.       int10_to_str((int) var->value->val_int(), buf, -10);
  1698.       my_error(ER_UNKNOWN_CHARACTER_SET, MYF(0), buf);
  1699.       return 1;
  1700.     }
  1701.   }
  1702.   var->save_result.charset= tmp; // Save for update
  1703.   return 0;
  1704. }
  1705. bool sys_var_character_set::update(THD *thd, set_var *var)
  1706. {
  1707.   ci_ptr(thd,var->type)[0]= var->save_result.charset;
  1708.   thd->update_charset();
  1709.   return 0;
  1710. }
  1711. byte *sys_var_character_set::value_ptr(THD *thd, enum_var_type type,
  1712.        LEX_STRING *base)
  1713. {
  1714.   CHARSET_INFO *cs= ci_ptr(thd,type)[0];
  1715.   return cs ? (byte*) cs->csname : (byte*) NULL;
  1716. }
  1717. CHARSET_INFO ** sys_var_character_set_connection::ci_ptr(THD *thd,
  1718.  enum_var_type type)
  1719. {
  1720.   if (type == OPT_GLOBAL)
  1721.     return &global_system_variables.collation_connection;
  1722.   else
  1723.     return &thd->variables.collation_connection;
  1724. }
  1725. void sys_var_character_set_connection::set_default(THD *thd,
  1726.    enum_var_type type)
  1727. {
  1728.  if (type == OPT_GLOBAL)
  1729.    global_system_variables.collation_connection= default_charset_info;
  1730.  else
  1731.  {
  1732.    thd->variables.collation_connection= global_system_variables.collation_connection;
  1733.    thd->update_charset();
  1734.  }
  1735. }
  1736. CHARSET_INFO ** sys_var_character_set_client::ci_ptr(THD *thd,
  1737.      enum_var_type type)
  1738. {
  1739.   if (type == OPT_GLOBAL)
  1740.     return &global_system_variables.character_set_client;
  1741.   else
  1742.     return &thd->variables.character_set_client;
  1743. }
  1744. void sys_var_character_set_client::set_default(THD *thd, enum_var_type type)
  1745. {
  1746.  if (type == OPT_GLOBAL)
  1747.    global_system_variables.character_set_client= default_charset_info;
  1748.  else
  1749.  {
  1750.    thd->variables.character_set_client= (global_system_variables.
  1751.  character_set_client);
  1752.    thd->update_charset();
  1753.  }
  1754. }
  1755. CHARSET_INFO **
  1756. sys_var_character_set_results::ci_ptr(THD *thd, enum_var_type type)
  1757. {
  1758.   if (type == OPT_GLOBAL)
  1759.     return &global_system_variables.character_set_results;
  1760.   else
  1761.     return &thd->variables.character_set_results;
  1762. }
  1763. void sys_var_character_set_results::set_default(THD *thd, enum_var_type type)
  1764. {
  1765.  if (type == OPT_GLOBAL)
  1766.    global_system_variables.character_set_results= default_charset_info;
  1767.  else
  1768.  {
  1769.    thd->variables.character_set_results= (global_system_variables.
  1770.   character_set_results);
  1771.    thd->update_charset();
  1772.  }
  1773. }
  1774. CHARSET_INFO **
  1775. sys_var_character_set_server::ci_ptr(THD *thd, enum_var_type type)
  1776. {
  1777.   if (type == OPT_GLOBAL)
  1778.     return &global_system_variables.collation_server;
  1779.   else
  1780.     return &thd->variables.collation_server;
  1781. }
  1782. void sys_var_character_set_server::set_default(THD *thd, enum_var_type type)
  1783. {
  1784.  if (type == OPT_GLOBAL)
  1785.    global_system_variables.collation_server= default_charset_info;
  1786.  else
  1787.  {
  1788.    thd->variables.collation_server= global_system_variables.collation_server;
  1789.    thd->update_charset();
  1790.  }
  1791. }
  1792. #if defined(HAVE_REPLICATION) && (MYSQL_VERSION_ID < 50000)
  1793. bool sys_var_character_set_server::check(THD *thd, set_var *var)
  1794. {
  1795.   if ((var->type == OPT_GLOBAL) &&
  1796.       (mysql_bin_log.is_open() ||
  1797.        active_mi->slave_running || active_mi->rli.slave_running))
  1798.   {
  1799.     my_printf_error(0, "Binary logging and replication forbid changing 
  1800. the global server character set or collation", MYF(0));
  1801.     return 1;
  1802.   }
  1803.   return sys_var_character_set::check(thd,var);
  1804. }
  1805. #endif
  1806. CHARSET_INFO ** sys_var_character_set_database::ci_ptr(THD *thd,
  1807.        enum_var_type type)
  1808. {
  1809.   if (type == OPT_GLOBAL)
  1810.     return &global_system_variables.collation_database;
  1811.   else
  1812.     return &thd->variables.collation_database;
  1813. }
  1814. void sys_var_character_set_database::set_default(THD *thd, enum_var_type type)
  1815. {
  1816.  if (type == OPT_GLOBAL)
  1817.     global_system_variables.collation_database= default_charset_info;
  1818.   else
  1819.   {
  1820.     thd->variables.collation_database= thd->db_charset;
  1821.     thd->update_charset();
  1822.   }
  1823. }
  1824. bool sys_var_collation_connection::update(THD *thd, set_var *var)
  1825. {
  1826.   if (var->type == OPT_GLOBAL)
  1827.     global_system_variables.collation_connection= var->save_result.charset;
  1828.   else
  1829.   {
  1830.     thd->variables.collation_connection= var->save_result.charset;
  1831.     thd->update_charset();
  1832.   }
  1833.   return 0;
  1834. }
  1835. byte *sys_var_collation_connection::value_ptr(THD *thd, enum_var_type type,
  1836.       LEX_STRING *base)
  1837. {
  1838.   CHARSET_INFO *cs= ((type == OPT_GLOBAL) ?
  1839.   global_system_variables.collation_connection :
  1840.   thd->variables.collation_connection);
  1841.   return cs ? (byte*) cs->name : (byte*) "NULL";
  1842. }
  1843. void sys_var_collation_connection::set_default(THD *thd, enum_var_type type)
  1844. {
  1845.  if (type == OPT_GLOBAL)
  1846.    global_system_variables.collation_connection= default_charset_info;
  1847.  else
  1848.  {
  1849.    thd->variables.collation_connection= (global_system_variables.
  1850.  collation_connection);
  1851.    thd->update_charset();
  1852.  }
  1853. }
  1854. bool sys_var_collation_database::update(THD *thd, set_var *var)
  1855. {
  1856.   if (var->type == OPT_GLOBAL)
  1857.     global_system_variables.collation_database= var->save_result.charset;
  1858.   else
  1859.   {
  1860.     thd->variables.collation_database= var->save_result.charset;
  1861.     thd->update_charset();
  1862.   }
  1863.   return 0;
  1864. }
  1865. byte *sys_var_collation_database::value_ptr(THD *thd, enum_var_type type,
  1866.       LEX_STRING *base)
  1867. {
  1868.   CHARSET_INFO *cs= ((type == OPT_GLOBAL) ?
  1869.   global_system_variables.collation_database :
  1870.   thd->variables.collation_database);
  1871.   return cs ? (byte*) cs->name : (byte*) "NULL";
  1872. }
  1873. void sys_var_collation_database::set_default(THD *thd, enum_var_type type)
  1874. {
  1875.  if (type == OPT_GLOBAL)
  1876.    global_system_variables.collation_database= default_charset_info;
  1877.  else
  1878.  {
  1879.    thd->variables.collation_database= (global_system_variables.
  1880.  collation_database);
  1881.    thd->update_charset();
  1882.  }
  1883. }
  1884. #if defined(HAVE_REPLICATION) && (MYSQL_VERSION_ID < 50000)
  1885. bool sys_var_collation_server::check(THD *thd, set_var *var)
  1886. {
  1887.   if ((var->type == OPT_GLOBAL) &&
  1888.       (mysql_bin_log.is_open() ||
  1889.        active_mi->slave_running || active_mi->rli.slave_running))
  1890.   {
  1891.     my_printf_error(0, "Binary logging and replication forbid changing 
  1892. the global server character set or collation", MYF(0));
  1893.     return 1;
  1894.   }
  1895.   return sys_var_collation::check(thd,var);
  1896. }
  1897. #endif
  1898. bool sys_var_collation_server::update(THD *thd, set_var *var)
  1899. {
  1900.   if (var->type == OPT_GLOBAL)
  1901.     global_system_variables.collation_server= var->save_result.charset;
  1902.   else
  1903.   {
  1904.     thd->variables.collation_server= var->save_result.charset;
  1905.     thd->update_charset();
  1906.   }
  1907.   return 0;
  1908. }
  1909. byte *sys_var_collation_server::value_ptr(THD *thd, enum_var_type type,
  1910.       LEX_STRING *base)
  1911. {
  1912.   CHARSET_INFO *cs= ((type == OPT_GLOBAL) ?
  1913.   global_system_variables.collation_server :
  1914.   thd->variables.collation_server);
  1915.   return cs ? (byte*) cs->name : (byte*) "NULL";
  1916. }
  1917. void sys_var_collation_server::set_default(THD *thd, enum_var_type type)
  1918. {
  1919.  if (type == OPT_GLOBAL)
  1920.    global_system_variables.collation_server= default_charset_info;
  1921.  else
  1922.  {
  1923.    thd->variables.collation_server= (global_system_variables.
  1924.  collation_server);
  1925.    thd->update_charset();
  1926.  }
  1927. }
  1928. LEX_STRING default_key_cache_base= {(char *) "default", 7 };
  1929. static KEY_CACHE zero_key_cache;
  1930. KEY_CACHE *get_key_cache(LEX_STRING *cache_name)
  1931. {
  1932.   safe_mutex_assert_owner(&LOCK_global_system_variables);
  1933.   if (!cache_name || ! cache_name->length)
  1934.     cache_name= &default_key_cache_base;
  1935.   return ((KEY_CACHE*) find_named(&key_caches,
  1936.                                       cache_name->str, cache_name->length, 0));
  1937. }
  1938. byte *sys_var_key_cache_param::value_ptr(THD *thd, enum_var_type type,
  1939.  LEX_STRING *base)
  1940. {
  1941.   KEY_CACHE *key_cache= get_key_cache(base);
  1942.   if (!key_cache)
  1943.     key_cache= &zero_key_cache;
  1944.   return (byte*) key_cache + offset ;
  1945. }
  1946. bool sys_var_key_buffer_size::update(THD *thd, set_var *var)
  1947. {
  1948.   ulonglong tmp= var->save_result.ulonglong_value;
  1949.   LEX_STRING *base_name= &var->base;
  1950.   KEY_CACHE *key_cache;
  1951.   bool error= 0;
  1952.   /* If no basename, assume it's for the key cache named 'default' */
  1953.   if (!base_name->length)
  1954.     base_name= &default_key_cache_base;
  1955.   pthread_mutex_lock(&LOCK_global_system_variables);
  1956.   key_cache= get_key_cache(base_name);
  1957.                             
  1958.   if (!key_cache)
  1959.   {
  1960.     /* Key cache didn't exists */
  1961.     if (!tmp) // Tried to delete cache
  1962.       goto end; // Ok, nothing to do
  1963.     if (!(key_cache= create_key_cache(base_name->str, base_name->length)))
  1964.     {
  1965.       error= 1;
  1966.       goto end;
  1967.     }
  1968.   }
  1969.   /*
  1970.     Abort if some other thread is changing the key cache
  1971.     TODO: This should be changed so that we wait until the previous
  1972.     assignment is done and then do the new assign
  1973.   */
  1974.   if (key_cache->in_init)
  1975.     goto end;
  1976.   if (!tmp) // Zero size means delete
  1977.   {
  1978.     if (key_cache == dflt_key_cache)
  1979.       goto end; // Ignore default key cache
  1980.     if (key_cache->key_cache_inited) // If initied
  1981.     {
  1982.       /*
  1983. Move tables using this key cache to the default key cache
  1984. and clear the old key cache.
  1985.       */
  1986.       NAMED_LIST *list; 
  1987.       key_cache= (KEY_CACHE *) find_named(&key_caches, base_name->str,
  1988.       base_name->length, &list);
  1989.       key_cache->in_init= 1;
  1990.       pthread_mutex_unlock(&LOCK_global_system_variables);
  1991.       error= reassign_keycache_tables(thd, key_cache, dflt_key_cache);
  1992.       pthread_mutex_lock(&LOCK_global_system_variables);
  1993.       key_cache->in_init= 0;
  1994.     }
  1995.     /*
  1996.       We don't delete the key cache as some running threads my still be
  1997.       in the key cache code with a pointer to the deleted (empty) key cache
  1998.     */
  1999.     goto end;
  2000.   }
  2001.   key_cache->param_buff_size=
  2002.     (ulonglong) getopt_ull_limit_value(tmp, option_limits);
  2003.   /* If key cache didn't existed initialize it, else resize it */
  2004.   key_cache->in_init= 1;
  2005.   pthread_mutex_unlock(&LOCK_global_system_variables);
  2006.   if (!key_cache->key_cache_inited)
  2007.     error= (bool) (ha_init_key_cache("", key_cache));
  2008.   else
  2009.     error= (bool)(ha_resize_key_cache(key_cache));
  2010.   pthread_mutex_lock(&LOCK_global_system_variables);
  2011.   key_cache->in_init= 0;  
  2012. end:
  2013.   pthread_mutex_unlock(&LOCK_global_system_variables);
  2014.   return error;
  2015. }
  2016. bool sys_var_key_cache_long::update(THD *thd, set_var *var)
  2017. {
  2018.   ulong tmp= (ulong) var->value->val_int();
  2019.   LEX_STRING *base_name= &var->base;
  2020.   bool error= 0;
  2021.   if (!base_name->length)
  2022.     base_name= &default_key_cache_base;
  2023.   pthread_mutex_lock(&LOCK_global_system_variables);
  2024.   KEY_CACHE *key_cache= get_key_cache(base_name);
  2025.   if (!key_cache && !(key_cache= create_key_cache(base_name->str,
  2026.                   base_name->length)))
  2027.   {
  2028.     error= 1;
  2029.     goto end;
  2030.   }
  2031.   /*
  2032.     Abort if some other thread is changing the key cache
  2033.     TODO: This should be changed so that we wait until the previous
  2034.     assignment is done and then do the new assign
  2035.   */
  2036.   if (key_cache->in_init)
  2037.     goto end;
  2038.   *((ulong*) (((char*) key_cache) + offset))=
  2039.     (ulong) getopt_ull_limit_value(tmp, option_limits);
  2040.   /*
  2041.     Don't create a new key cache if it didn't exist
  2042.     (key_caches are created only when the user sets block_size)
  2043.   */
  2044.   key_cache->in_init= 1;
  2045.   pthread_mutex_unlock(&LOCK_global_system_variables);
  2046.   error= (bool) (ha_resize_key_cache(key_cache));
  2047.   pthread_mutex_lock(&LOCK_global_system_variables);
  2048.   key_cache->in_init= 0;  
  2049. end:
  2050.   pthread_mutex_unlock(&LOCK_global_system_variables);
  2051.   return error;
  2052. }
  2053. /*****************************************************************************
  2054.   Functions to handle SET NAMES and SET CHARACTER SET
  2055. *****************************************************************************/
  2056. int set_var_collation_client::check(THD *thd)
  2057. {
  2058.   return 0;
  2059. }
  2060. int set_var_collation_client::update(THD *thd)
  2061. {
  2062.   thd->variables.character_set_client= character_set_client;
  2063.   thd->variables.character_set_results= character_set_results;
  2064.   thd->variables.collation_connection= collation_connection;
  2065.   thd->update_charset();
  2066.   thd->protocol_simple.init(thd);
  2067.   thd->protocol_prep.init(thd);
  2068.   return 0;
  2069. }
  2070. /****************************************************************************/
  2071. bool sys_var_timestamp::update(THD *thd,  set_var *var)
  2072. {
  2073.   thd->set_time((time_t) var->save_result.ulonglong_value);
  2074.   return 0;
  2075. }
  2076. void sys_var_timestamp::set_default(THD *thd, enum_var_type type)
  2077. {
  2078.   thd->user_time=0;
  2079. }
  2080. byte *sys_var_timestamp::value_ptr(THD *thd, enum_var_type type,
  2081.    LEX_STRING *base)
  2082. {
  2083.   thd->sys_var_tmp.long_value= (long) thd->start_time;
  2084.   return (byte*) &thd->sys_var_tmp.long_value;
  2085. }
  2086. bool sys_var_last_insert_id::update(THD *thd, set_var *var)
  2087. {
  2088.   thd->insert_id(var->save_result.ulonglong_value);
  2089.   return 0;
  2090. }
  2091. byte *sys_var_last_insert_id::value_ptr(THD *thd, enum_var_type type,
  2092. LEX_STRING *base)
  2093. {
  2094.   thd->sys_var_tmp.long_value= (long) thd->insert_id();
  2095.   return (byte*) &thd->last_insert_id;
  2096. }
  2097. bool sys_var_insert_id::update(THD *thd, set_var *var)
  2098. {
  2099.   thd->next_insert_id= var->save_result.ulonglong_value;
  2100.   return 0;
  2101. }
  2102. byte *sys_var_insert_id::value_ptr(THD *thd, enum_var_type type,
  2103.    LEX_STRING *base)
  2104. {
  2105.   return (byte*) &thd->current_insert_id;
  2106. }
  2107. #ifdef HAVE_REPLICATION
  2108. bool sys_var_slave_skip_counter::check(THD *thd, set_var *var)
  2109. {
  2110.   int result= 0;
  2111.   pthread_mutex_lock(&LOCK_active_mi);
  2112.   pthread_mutex_lock(&active_mi->rli.run_lock);
  2113.   if (active_mi->rli.slave_running)
  2114.   {
  2115.     my_error(ER_SLAVE_MUST_STOP, MYF(0));
  2116.     result=1;
  2117.   }
  2118.   pthread_mutex_unlock(&active_mi->rli.run_lock);
  2119.   pthread_mutex_unlock(&LOCK_active_mi);
  2120.   var->save_result.ulong_value= (ulong) var->value->val_int();
  2121.   return result;
  2122. }
  2123. bool sys_var_slave_skip_counter::update(THD *thd, set_var *var)
  2124. {
  2125.   pthread_mutex_lock(&LOCK_active_mi);
  2126.   pthread_mutex_lock(&active_mi->rli.run_lock);
  2127.   /*
  2128.     The following test should normally never be true as we test this
  2129.     in the check function;  To be safe against multiple
  2130.     SQL_SLAVE_SKIP_COUNTER request, we do the check anyway
  2131.   */
  2132.   if (!active_mi->rli.slave_running)
  2133.   {
  2134.     pthread_mutex_lock(&active_mi->rli.data_lock);
  2135.     active_mi->rli.slave_skip_counter= var->save_result.ulong_value;
  2136.     pthread_mutex_unlock(&active_mi->rli.data_lock);
  2137.   }
  2138.   pthread_mutex_unlock(&active_mi->rli.run_lock);
  2139.   pthread_mutex_unlock(&LOCK_active_mi);
  2140.   return 0;
  2141. }
  2142. bool sys_var_sync_binlog_period::update(THD *thd, set_var *var)
  2143. {
  2144.   pthread_mutex_t *lock_log= mysql_bin_log.get_log_lock();
  2145.   sync_binlog_period= (ulong) var->save_result.ulonglong_value;
  2146.   /*
  2147.     Must reset the counter otherwise it may already be beyond the new period
  2148.     and so the new period will not be taken into account. Need mutex otherwise
  2149.     might be cancelled by a simultanate ++ in MYSQL_LOG::write().
  2150.   */
  2151.   pthread_mutex_lock(lock_log);
  2152.   sync_binlog_counter= 0;
  2153.   pthread_mutex_unlock(lock_log);
  2154.   return 0;
  2155. }
  2156. #endif /* HAVE_REPLICATION */
  2157. bool sys_var_rand_seed1::update(THD *thd, set_var *var)
  2158. {
  2159.   thd->rand.seed1= (ulong) var->save_result.ulonglong_value;
  2160.   return 0;
  2161. }
  2162. bool sys_var_rand_seed2::update(THD *thd, set_var *var)
  2163. {
  2164.   thd->rand.seed2= (ulong) var->save_result.ulonglong_value;
  2165.   return 0;
  2166. }
  2167. bool sys_var_thd_time_zone::check(THD *thd, set_var *var)
  2168. {
  2169.   char buff[MAX_TIME_ZONE_NAME_LENGTH]; 
  2170.   String str(buff, sizeof(buff), &my_charset_latin1);
  2171.   String *res= var->value->val_str(&str);
  2172. #if defined(HAVE_REPLICATION) && (MYSQL_VERSION_ID < 50000)
  2173.   if ((var->type == OPT_GLOBAL) &&
  2174.       (mysql_bin_log.is_open() ||
  2175.        active_mi->slave_running || active_mi->rli.slave_running))
  2176.   {
  2177.     my_printf_error(0, "Binary logging and replication forbid changing "
  2178.                        "of the global server time zone", MYF(0));
  2179.     return 1;
  2180.   }
  2181. #endif
  2182.   if (!(var->save_result.time_zone=
  2183.           my_tz_find(res, thd->lex->time_zone_tables_used)))
  2184.   {
  2185.     my_error(ER_UNKNOWN_TIME_ZONE, MYF(0), res ? res->c_ptr() : "NULL");
  2186.     return 1;
  2187.   }
  2188.   return 0;
  2189. }
  2190. bool sys_var_thd_time_zone::update(THD *thd, set_var *var)
  2191. {
  2192.   /* We are using Time_zone object found during check() phase. */
  2193.   if (var->type == OPT_GLOBAL)
  2194.   {
  2195.     pthread_mutex_lock(&LOCK_global_system_variables);
  2196.     global_system_variables.time_zone= var->save_result.time_zone;
  2197.     pthread_mutex_unlock(&LOCK_global_system_variables);
  2198.   }
  2199.   else
  2200.     thd->variables.time_zone= var->save_result.time_zone;
  2201.   return 0;
  2202. }
  2203. byte *sys_var_thd_time_zone::value_ptr(THD *thd, enum_var_type type,
  2204.        LEX_STRING *base)
  2205. {
  2206.   /* 
  2207.     We can use ptr() instead of c_ptr() here because String contaning
  2208.     time zone name is guaranteed to be zero ended.
  2209.   */
  2210.   if (type == OPT_GLOBAL)
  2211.     return (byte *)(global_system_variables.time_zone->get_name()->ptr());
  2212.   else
  2213.     return (byte *)(thd->variables.time_zone->get_name()->ptr());
  2214. }
  2215. void sys_var_thd_time_zone::set_default(THD *thd, enum_var_type type)
  2216. {
  2217.  pthread_mutex_lock(&LOCK_global_system_variables);
  2218.  if (type == OPT_GLOBAL)
  2219.  {
  2220.    if (default_tz_name)
  2221.    {
  2222.      String str(default_tz_name, &my_charset_latin1);
  2223.      /*
  2224.        We are guaranteed to find this time zone since its existence
  2225.        is checked during start-up.
  2226.      */
  2227.      global_system_variables.time_zone=
  2228.        my_tz_find(&str, thd->lex->time_zone_tables_used);
  2229.    }
  2230.    else
  2231.      global_system_variables.time_zone= my_tz_SYSTEM;
  2232.  }
  2233.  else
  2234.    thd->variables.time_zone= global_system_variables.time_zone;
  2235.  pthread_mutex_unlock(&LOCK_global_system_variables);
  2236. }
  2237. /*
  2238.   Functions to update thd->options bits
  2239. */
  2240. static bool set_option_bit(THD *thd, set_var *var)
  2241. {
  2242.   sys_var_thd_bit *sys_var= ((sys_var_thd_bit*) var->var);
  2243.   if ((var->save_result.ulong_value != 0) == sys_var->reverse)
  2244.     thd->options&= ~sys_var->bit_flag;
  2245.   else
  2246.     thd->options|= sys_var->bit_flag;
  2247.   return 0;
  2248. }
  2249. static bool set_option_autocommit(THD *thd, set_var *var)
  2250. {
  2251.   /* The test is negative as the flag we use is NOT autocommit */
  2252.   ulong org_options=thd->options;
  2253.   if (var->save_result.ulong_value != 0)
  2254.     thd->options&= ~((sys_var_thd_bit*) var->var)->bit_flag;
  2255.   else
  2256.     thd->options|= ((sys_var_thd_bit*) var->var)->bit_flag;
  2257.   if ((org_options ^ thd->options) & OPTION_NOT_AUTOCOMMIT)
  2258.   {
  2259.     if ((org_options & OPTION_NOT_AUTOCOMMIT))
  2260.     {
  2261.       /* We changed to auto_commit mode */
  2262.       thd->options&= ~(ulong) (OPTION_BEGIN | OPTION_STATUS_NO_TRANS_UPDATE);
  2263.       thd->server_status|= SERVER_STATUS_AUTOCOMMIT;
  2264.       if (ha_commit(thd))
  2265. return 1;
  2266.     }
  2267.     else
  2268.     {
  2269.       thd->options&= ~(ulong) (OPTION_STATUS_NO_TRANS_UPDATE);
  2270.       thd->server_status&= ~SERVER_STATUS_AUTOCOMMIT;
  2271.     }
  2272.   }
  2273.   return 0;
  2274. }
  2275. static int check_log_update(THD *thd, set_var *var)
  2276. {
  2277. #ifndef NO_EMBEDDED_ACCESS_CHECKS
  2278.   if (!(thd->master_access & SUPER_ACL))
  2279.   {
  2280.     my_error(ER_SPECIFIC_ACCESS_DENIED_ERROR, MYF(0), "SUPER");
  2281.     return 1;
  2282.   }
  2283. #endif
  2284.   return 0;
  2285. }
  2286. static bool set_log_update(THD *thd, set_var *var)
  2287. {
  2288.   if (opt_sql_bin_update)
  2289.     ((sys_var_thd_bit*) var->var)->bit_flag|= (OPTION_BIN_LOG |
  2290.        OPTION_UPDATE_LOG);
  2291.   set_option_bit(thd, var);
  2292.   return 0;
  2293. }
  2294. static int check_pseudo_thread_id(THD *thd, set_var *var)
  2295. {
  2296.   var->save_result.ulonglong_value= var->value->val_int();
  2297. #ifndef NO_EMBEDDED_ACCESS_CHECKS
  2298.   if (thd->master_access & SUPER_ACL)
  2299.     return 0;
  2300.   else
  2301.   {
  2302.     my_error(ER_SPECIFIC_ACCESS_DENIED_ERROR, MYF(0), "SUPER");
  2303.     return 1;
  2304.   }
  2305. #else
  2306.   return 0;
  2307. #endif
  2308. }
  2309. static byte *get_warning_count(THD *thd)
  2310. {
  2311.   thd->sys_var_tmp.long_value=
  2312.     (thd->warn_count[(uint) MYSQL_ERROR::WARN_LEVEL_NOTE] +
  2313.      thd->warn_count[(uint) MYSQL_ERROR::WARN_LEVEL_WARN]);
  2314.   return (byte*) &thd->sys_var_tmp.long_value;
  2315. }
  2316. static byte *get_error_count(THD *thd)
  2317. {
  2318.   thd->sys_var_tmp.long_value= 
  2319.     thd->warn_count[(uint) MYSQL_ERROR::WARN_LEVEL_ERROR];
  2320.   return (byte*) &thd->sys_var_tmp.long_value;
  2321. }
  2322. static byte *get_have_innodb(THD *thd)
  2323. {
  2324.   return (byte*) show_comp_option_name[have_innodb];
  2325. }
  2326. /****************************************************************************
  2327.   Main handling of variables:
  2328.   - Initialisation
  2329.   - Searching during parsing
  2330.   - Update loop
  2331. ****************************************************************************/
  2332. /*
  2333.   Find variable name in option my_getopt structure used for command line args
  2334.   SYNOPSIS
  2335.     find_option()
  2336.     opt option structure array to search in
  2337.     name variable name
  2338.   RETURN VALUES
  2339.     0 Error
  2340.     ptr pointer to option structure
  2341. */
  2342. static struct my_option *find_option(struct my_option *opt, const char *name) 
  2343. {
  2344.   uint length=strlen(name);
  2345.   for (; opt->name; opt++)
  2346.   {
  2347.     if (!getopt_compare_strings(opt->name, name, length) &&
  2348. !opt->name[length])
  2349.     {
  2350.       /*
  2351. Only accept the option if one can set values through it.
  2352. If not, there is no default value or limits in the option.
  2353.       */
  2354.       return (opt->value) ? opt : 0;
  2355.     }
  2356.   }
  2357.   return 0;
  2358. }
  2359. /*
  2360.   Return variable name and length for hashing of variables
  2361. */
  2362. static byte *get_sys_var_length(const sys_var *var, uint *length,
  2363. my_bool first)
  2364. {
  2365.   *length= var->name_length;
  2366.   return (byte*) var->name;
  2367. }
  2368. /*
  2369.   Initialises sys variables and put them in system_variable_hash
  2370. */
  2371. void set_var_init()
  2372. {
  2373.   hash_init(&system_variable_hash, system_charset_info,
  2374.     array_elements(sys_variables),0,0,
  2375.     (hash_get_key) get_sys_var_length,0,0);
  2376.   sys_var **var, **end;
  2377.   for (var= sys_variables, end= sys_variables+array_elements(sys_variables) ;
  2378.        var < end;
  2379.        var++)
  2380.   {
  2381.     (*var)->name_length= strlen((*var)->name);
  2382.     (*var)->option_limits= find_option(my_long_options, (*var)->name);
  2383.     my_hash_insert(&system_variable_hash, (byte*) *var);
  2384.   }
  2385.   /*
  2386.     Special cases
  2387.     Needed because MySQL can't find the limits for a variable it it has
  2388.     a different name than the command line option.
  2389.     As these variables are deprecated, this code will disappear soon...
  2390.   */
  2391.   sys_sql_max_join_size.option_limits= sys_max_join_size.option_limits;
  2392. }
  2393. void set_var_free()
  2394. {
  2395.   hash_free(&system_variable_hash);
  2396. }
  2397. /*
  2398.   Find a user set-table variable
  2399.   SYNOPSIS
  2400.     find_sys_var()
  2401.     str Name of system variable to find
  2402.     length Length of variable.  zero means that we should use strlen()
  2403. on the variable
  2404.   NOTE
  2405.     We have to use net_printf() as this is called during the parsing stage
  2406.   RETURN VALUES
  2407.     pointer pointer to variable definitions
  2408.     0 Unknown variable (error message is given)
  2409. */
  2410. sys_var *find_sys_var(const char *str, uint length)
  2411. {
  2412.   sys_var *var= (sys_var*) hash_search(&system_variable_hash,
  2413.        (byte*) str,
  2414.        length ? length :
  2415.        strlen(str));
  2416.   if (!var)
  2417.     net_printf(current_thd, ER_UNKNOWN_SYSTEM_VARIABLE, (char*) str);
  2418.   return var;
  2419. }
  2420. /*
  2421.   Execute update of all variables
  2422.   SYNOPSIS
  2423.   sql_set
  2424.     THD Thread id
  2425.     set_var List of variables to update
  2426.   DESCRIPTION
  2427.     First run a check of all variables that all updates will go ok.
  2428.     If yes, then execute all updates, returning an error if any one failed.
  2429.     This should ensure that in all normal cases none all or variables are
  2430.     updated
  2431.     RETURN VALUE
  2432.     0 ok
  2433.     1 ERROR, message sent (normally no variables was updated)
  2434.     -1  ERROR, message not sent
  2435. */
  2436. int sql_set_variables(THD *thd, List<set_var_base> *var_list)
  2437. {
  2438.   int error;
  2439.   List_iterator_fast<set_var_base> it(*var_list);
  2440.   DBUG_ENTER("sql_set_variables");
  2441.   set_var_base *var;
  2442.   while ((var=it++))
  2443.   {
  2444.     if ((error= var->check(thd)))
  2445.       goto err;
  2446.   }
  2447.   if (!(error= test(thd->net.report_error)))
  2448.   {
  2449.     it.rewind();
  2450.     while ((var= it++))
  2451.       error|= var->update(thd);         // Returns 0, -1 or 1
  2452.   }
  2453. err:
  2454.   free_underlaid_joins(thd, &thd->lex->select_lex);
  2455.   DBUG_RETURN(error);
  2456. }
  2457. /*
  2458.   Say if all variables set by a SET support the ONE_SHOT keyword (currently,
  2459.   only character set and collation do; later timezones will).
  2460.   SYNOPSIS
  2461.   not_all_support_one_shot
  2462.     set_var List of variables to update
  2463.   NOTES
  2464.     It has a "not_" because it makes faster tests (no need to "!")
  2465.     RETURN VALUE
  2466.     0 all variables of the list support ONE_SHOT
  2467.     1 at least one does not support ONE_SHOT
  2468. */
  2469. bool not_all_support_one_shot(List<set_var_base> *var_list)
  2470. {
  2471.   List_iterator_fast<set_var_base> it(*var_list);
  2472.   set_var_base *var;
  2473.   while ((var= it++))
  2474.   {
  2475.     if (var->no_support_one_shot())
  2476.       return 1;
  2477.   }
  2478.   return 0;
  2479. }
  2480. /*****************************************************************************
  2481.   Functions to handle SET mysql_internal_variable=const_expr
  2482. *****************************************************************************/
  2483. int set_var::check(THD *thd)
  2484. {
  2485.   if (var->check_type(type))
  2486.   {
  2487.     my_error(type == OPT_GLOBAL ? ER_LOCAL_VARIABLE : ER_GLOBAL_VARIABLE,
  2488.      MYF(0),
  2489.      var->name);
  2490.     return -1;
  2491.   }
  2492.   if ((type == OPT_GLOBAL && check_global_access(thd, SUPER_ACL)))
  2493.     return 1;
  2494.   /* value is a NULL pointer if we are using SET ... = DEFAULT */
  2495.   if (!value)
  2496.   {
  2497.     if (var->check_default(type))
  2498.     {
  2499.       my_error(ER_NO_DEFAULT, MYF(0), var->name);
  2500.       return -1;
  2501.     }
  2502.     return 0;
  2503.   }
  2504.   if ((!value->fixed && 
  2505.        value->fix_fields(thd, 0, &value)) || value->check_cols(1))
  2506.     return -1;
  2507.   if (var->check_update_type(value->result_type()))
  2508.   {
  2509.     my_error(ER_WRONG_TYPE_FOR_VAR, MYF(0), var->name);
  2510.     return -1;
  2511.   }
  2512.   return var->check(thd, this) ? -1 : 0;
  2513. }
  2514. /*
  2515.   Check variable, but without assigning value (used by PS)
  2516.   SYNOPSIS
  2517.     set_var::light_check()
  2518.     thd thread handler
  2519.   RETURN VALUE
  2520.     0 ok
  2521.     1 ERROR, message sent (normally no variables was updated)
  2522.     -1  ERROR, message not sent
  2523. */
  2524. int set_var::light_check(THD *thd)
  2525. {
  2526.   if (var->check_type(type))
  2527.   {
  2528.     my_error(type == OPT_GLOBAL ? ER_LOCAL_VARIABLE : ER_GLOBAL_VARIABLE,
  2529.      MYF(0),
  2530.      var->name);
  2531.     return -1;
  2532.   }
  2533.   if (type == OPT_GLOBAL && check_global_access(thd, SUPER_ACL))
  2534.     return 1;
  2535.   if (value && ((!value->fixed && value->fix_fields(thd, 0, &value)) ||
  2536.                 value->check_cols(1)))
  2537.     return -1;
  2538.   return 0;
  2539. }
  2540. int set_var::update(THD *thd)
  2541. {
  2542.   if (!value)
  2543.     var->set_default(thd, type);
  2544.   else if (var->update(thd, this))
  2545.     return -1; // should never happen
  2546.   if (var->after_update)
  2547.     (*var->after_update)(thd, type);
  2548.   return 0;
  2549. }
  2550. /*****************************************************************************
  2551.   Functions to handle SET @user_variable=const_expr
  2552. *****************************************************************************/
  2553. int set_var_user::check(THD *thd)
  2554. {
  2555.   /*
  2556.     Item_func_set_user_var can't substitute something else on its place =>
  2557.     0 can be passed as last argument (reference on item)
  2558.   */
  2559.   return (user_var_item->fix_fields(thd, 0, (Item**) 0) ||
  2560.   user_var_item->check()) ? -1 : 0;
  2561. }
  2562. /*
  2563.   Check variable, but without assigning value (used by PS)
  2564.   SYNOPSIS
  2565.     set_var_user::light_check()
  2566.     thd thread handler
  2567.   RETURN VALUE
  2568.     0 ok
  2569.     1 ERROR, message sent (normally no variables was updated)
  2570.     -1  ERROR, message not sent
  2571. */
  2572. int set_var_user::light_check(THD *thd)
  2573. {
  2574.   /*
  2575.     Item_func_set_user_var can't substitute something else on its place =>
  2576.     0 can be passed as last argument (reference on item)
  2577.   */
  2578.   return (user_var_item->fix_fields(thd, 0, (Item**) 0));
  2579. }
  2580. int set_var_user::update(THD *thd)
  2581. {
  2582.   if (user_var_item->update())
  2583.   {
  2584.     /* Give an error if it's not given already */
  2585.     my_error(ER_SET_CONSTANTS_ONLY, MYF(0));
  2586.     return -1;
  2587.   }
  2588.   return 0;
  2589. }
  2590. /*****************************************************************************
  2591.   Functions to handle SET PASSWORD
  2592. *****************************************************************************/
  2593. int set_var_password::check(THD *thd)
  2594. {
  2595. #ifndef NO_EMBEDDED_ACCESS_CHECKS
  2596.   if (!user->host.str)
  2597.   {
  2598.     if (thd->priv_host != 0)
  2599.     {
  2600.       user->host.str= (char *) thd->priv_host;
  2601.       user->host.length= strlen(thd->priv_host);
  2602.     }
  2603.     else
  2604.     {
  2605.       user->host.str= (char *)"%";
  2606.       user->host.length= 1;
  2607.     }
  2608.   }
  2609.   /* Returns 1 as the function sends error to client */
  2610.   return check_change_password(thd, user->host.str, user->user.str,
  2611.                                password, strlen(password)) ? 1 : 0;
  2612. #else
  2613.   return 0;
  2614. #endif
  2615. }
  2616. int set_var_password::update(THD *thd)
  2617. {
  2618. #ifndef NO_EMBEDDED_ACCESS_CHECKS
  2619.   /* Returns 1 as the function sends error to client */
  2620.   return change_password(thd, user->host.str, user->user.str, password) ?
  2621.   1 : 0;
  2622. #else
  2623.   return 0;
  2624. #endif
  2625. }
  2626. /****************************************************************************
  2627.  Functions to handle table_type
  2628. ****************************************************************************/
  2629. /* Based upon sys_var::check_enum() */
  2630. bool sys_var_thd_storage_engine::check(THD *thd, set_var *var)
  2631. {
  2632.   char buff[80];
  2633.   const char *value;
  2634.   String str(buff, sizeof(buff), &my_charset_latin1), *res;
  2635.   if (var->value->result_type() == STRING_RESULT)
  2636.   {
  2637.     enum db_type db_type;
  2638.     if (!(res=var->value->val_str(&str)) ||
  2639. !(var->save_result.ulong_value=
  2640.           (ulong) (db_type= ha_resolve_by_name(res->ptr(), res->length()))) ||
  2641.         ha_checktype(db_type) != db_type)
  2642.     {
  2643.       value= res ? res->c_ptr() : "NULL";
  2644.       goto err;
  2645.     }
  2646.     return 0;
  2647.   }
  2648.   value= "unknown";
  2649. err:
  2650.   my_error(ER_UNKNOWN_STORAGE_ENGINE, MYF(0), value);
  2651.   return 1;    
  2652. }
  2653. byte *sys_var_thd_storage_engine::value_ptr(THD *thd, enum_var_type type,
  2654.     LEX_STRING *base)
  2655. {
  2656.   ulong val;
  2657.   val= ((type == OPT_GLOBAL) ? global_system_variables.*offset :
  2658.         thd->variables.*offset);
  2659.   const char *table_type= ha_get_storage_engine((enum db_type)val);
  2660.   return (byte *) table_type;
  2661. }
  2662. void sys_var_thd_storage_engine::set_default(THD *thd, enum_var_type type)
  2663. {
  2664.   if (type == OPT_GLOBAL)
  2665.     global_system_variables.*offset= (ulong) DB_TYPE_MYISAM;
  2666.   else
  2667.     thd->variables.*offset= (ulong) (global_system_variables.*offset);
  2668. }
  2669. bool sys_var_thd_storage_engine::update(THD *thd, set_var *var)
  2670. {
  2671.   if (var->type == OPT_GLOBAL)
  2672.     global_system_variables.*offset= var->save_result.ulong_value;
  2673.   else
  2674.     thd->variables.*offset= var->save_result.ulong_value;
  2675.   return 0;
  2676. }
  2677. void sys_var_thd_table_type::warn_deprecated(THD *thd)
  2678. {
  2679.   push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_WARN,
  2680.       ER_WARN_DEPRECATED_SYNTAX,
  2681.       ER(ER_WARN_DEPRECATED_SYNTAX), "table_type",
  2682.                       "storage_engine"); 
  2683. }
  2684. void sys_var_thd_table_type::set_default(THD *thd, enum_var_type type)
  2685. {
  2686.   warn_deprecated(thd);
  2687.   sys_var_thd_storage_engine::set_default(thd, type);
  2688. }
  2689. bool sys_var_thd_table_type::update(THD *thd, set_var *var)
  2690. {
  2691.   warn_deprecated(thd);
  2692.   return sys_var_thd_storage_engine::update(thd, var);
  2693. }
  2694. /****************************************************************************
  2695.  Functions to handle sql_mode
  2696. ****************************************************************************/
  2697. byte *sys_var_thd_sql_mode::value_ptr(THD *thd, enum_var_type type,
  2698.       LEX_STRING *base)
  2699. {
  2700.   ulong val;
  2701.   char buff[256];
  2702.   String tmp(buff, sizeof(buff), &my_charset_latin1);
  2703.   tmp.length(0);
  2704.   val= ((type == OPT_GLOBAL) ? global_system_variables.*offset :
  2705.         thd->variables.*offset);
  2706.   for (uint i= 0; val; val>>= 1, i++)
  2707.   {
  2708.     if (val & 1)
  2709.     {
  2710.       tmp.append(enum_names->type_names[i]);
  2711.       tmp.append(',');
  2712.     }
  2713.   }
  2714.   if (tmp.length())
  2715.     tmp.length(tmp.length() - 1);
  2716.   return (byte*) thd->strmake(tmp.ptr(), tmp.length());
  2717. }
  2718. void sys_var_thd_sql_mode::set_default(THD *thd, enum_var_type type)
  2719. {
  2720.   if (type == OPT_GLOBAL)
  2721.     global_system_variables.*offset= 0;
  2722.   else
  2723.     thd->variables.*offset= global_system_variables.*offset;
  2724. }
  2725. void fix_sql_mode_var(THD *thd, enum_var_type type)
  2726. {
  2727.   if (type == OPT_GLOBAL)
  2728.     global_system_variables.sql_mode=
  2729.       fix_sql_mode(global_system_variables.sql_mode);
  2730.   else
  2731.     thd->variables.sql_mode= fix_sql_mode(thd->variables.sql_mode);
  2732. }
  2733. /* Map database specific bits to function bits */
  2734. ulong fix_sql_mode(ulong sql_mode)
  2735. {
  2736.   /*
  2737.     Note that we dont set 
  2738.     MODE_NO_KEY_OPTIONS | MODE_NO_TABLE_OPTIONS | MODE_NO_FIELD_OPTIONS
  2739.     to allow one to get full use of MySQL in this mode.
  2740.   */
  2741.   if (sql_mode & MODE_ANSI)
  2742.   {
  2743.     sql_mode|= (MODE_REAL_AS_FLOAT | MODE_PIPES_AS_CONCAT | MODE_ANSI_QUOTES |
  2744. MODE_IGNORE_SPACE);
  2745.     /* 
  2746.       MODE_ONLY_FULL_GROUP_BY removed from ANSI mode because it is currently
  2747.       overly restrictive (see BUG#8510).
  2748.     */
  2749.   }
  2750.   if (sql_mode & MODE_ORACLE)
  2751.     sql_mode|= (MODE_PIPES_AS_CONCAT | MODE_ANSI_QUOTES |
  2752. MODE_IGNORE_SPACE |
  2753. MODE_NO_KEY_OPTIONS | MODE_NO_TABLE_OPTIONS |
  2754. MODE_NO_FIELD_OPTIONS);
  2755.   if (sql_mode & MODE_MSSQL)
  2756.     sql_mode|= (MODE_PIPES_AS_CONCAT | MODE_ANSI_QUOTES |
  2757. MODE_IGNORE_SPACE |
  2758. MODE_NO_KEY_OPTIONS | MODE_NO_TABLE_OPTIONS |
  2759. MODE_NO_FIELD_OPTIONS);
  2760.   if (sql_mode & MODE_POSTGRESQL)
  2761.     sql_mode|= (MODE_PIPES_AS_CONCAT | MODE_ANSI_QUOTES |
  2762. MODE_IGNORE_SPACE |
  2763. MODE_NO_KEY_OPTIONS | MODE_NO_TABLE_OPTIONS |
  2764. MODE_NO_FIELD_OPTIONS);
  2765.   if (sql_mode & MODE_DB2)
  2766.     sql_mode|= (MODE_PIPES_AS_CONCAT | MODE_ANSI_QUOTES |
  2767. MODE_IGNORE_SPACE |
  2768. MODE_NO_KEY_OPTIONS | MODE_NO_TABLE_OPTIONS |
  2769. MODE_NO_FIELD_OPTIONS);
  2770.   if (sql_mode & MODE_MAXDB)
  2771.     sql_mode|= (MODE_PIPES_AS_CONCAT | MODE_ANSI_QUOTES |
  2772. MODE_IGNORE_SPACE |
  2773. MODE_NO_KEY_OPTIONS | MODE_NO_TABLE_OPTIONS |
  2774. MODE_NO_FIELD_OPTIONS);
  2775.   if (sql_mode & MODE_MYSQL40)
  2776.     sql_mode|= MODE_NO_FIELD_OPTIONS;
  2777.   if (sql_mode & MODE_MYSQL323)
  2778.     sql_mode|= MODE_NO_FIELD_OPTIONS;
  2779.   return sql_mode;
  2780. }
  2781. /****************************************************************************
  2782.   Named list handling
  2783. ****************************************************************************/
  2784. gptr find_named(I_List<NAMED_LIST> *list, const char *name, uint length,
  2785. NAMED_LIST **found)
  2786. {
  2787.   I_List_iterator<NAMED_LIST> it(*list);
  2788.   NAMED_LIST *element;
  2789.   while ((element= it++))
  2790.   {
  2791.     if (element->cmp(name, length))
  2792.     {
  2793.       if (found)
  2794.         *found= element;
  2795.       return element->data;
  2796.     }
  2797.   }
  2798.   return 0;
  2799. }
  2800. void delete_elements(I_List<NAMED_LIST> *list,
  2801.      void (*free_element)(const char *name, gptr))
  2802. {
  2803.   NAMED_LIST *element;
  2804.   DBUG_ENTER("delete_elements");
  2805.   while ((element= list->get()))
  2806.   {
  2807.     (*free_element)(element->name, element->data);
  2808.     delete element;
  2809.   }
  2810.   DBUG_VOID_RETURN;
  2811. }
  2812. /* Key cache functions */
  2813. static KEY_CACHE *create_key_cache(const char *name, uint length)
  2814. {
  2815.   KEY_CACHE *key_cache;
  2816.   DBUG_ENTER("create_key_cache");
  2817.   DBUG_PRINT("enter",("name: %.*s", length, name));
  2818.   
  2819.   if ((key_cache= (KEY_CACHE*) my_malloc(sizeof(KEY_CACHE),
  2820.      MYF(MY_ZEROFILL | MY_WME))))
  2821.   {
  2822.     if (!new NAMED_LIST(&key_caches, name, length, (gptr) key_cache))
  2823.     {
  2824.       my_free((char*) key_cache, MYF(0));
  2825.       key_cache= 0;
  2826.     }
  2827.     else
  2828.     {
  2829.       /*
  2830. Set default values for a key cache
  2831. The values in dflt_key_cache_var is set by my_getopt() at startup
  2832. We don't set 'buff_size' as this is used to enable the key cache
  2833.       */
  2834.       key_cache->param_block_size=     dflt_key_cache_var.param_block_size;
  2835.       key_cache->param_division_limit= dflt_key_cache_var.param_division_limit;
  2836.       key_cache->param_age_threshold=  dflt_key_cache_var.param_age_threshold;
  2837.     }
  2838.   }
  2839.   DBUG_RETURN(key_cache);
  2840. }
  2841. KEY_CACHE *get_or_create_key_cache(const char *name, uint length)
  2842. {
  2843.   LEX_STRING key_cache_name;
  2844.   KEY_CACHE *key_cache;
  2845.   key_cache_name.str= (char *) name;
  2846.   key_cache_name.length= length;
  2847.   pthread_mutex_lock(&LOCK_global_system_variables);
  2848.   if (!(key_cache= get_key_cache(&key_cache_name)))
  2849.     key_cache= create_key_cache(name, length);
  2850.   pthread_mutex_unlock(&LOCK_global_system_variables);
  2851.   return key_cache;
  2852. }
  2853. void free_key_cache(const char *name, KEY_CACHE *key_cache)
  2854. {
  2855.   ha_end_key_cache(key_cache);
  2856.   my_free((char*) key_cache, MYF(0));
  2857. }
  2858. bool process_key_caches(int (* func) (const char *name, KEY_CACHE *))
  2859. {
  2860.   I_List_iterator<NAMED_LIST> it(key_caches);
  2861.   NAMED_LIST *element;
  2862.   while ((element= it++))
  2863.   {
  2864.     KEY_CACHE *key_cache= (KEY_CACHE *) element->data;
  2865.     func(element->name, key_cache);
  2866.   }
  2867.   return 0;
  2868. }
  2869. /****************************************************************************
  2870.   Used templates
  2871. ****************************************************************************/
  2872. #ifdef __GNUC__
  2873. template class List<set_var_base>;
  2874. template class List_iterator_fast<set_var_base>;
  2875. template class I_List_iterator<NAMED_LIST>;
  2876. #endif