520.4.14
by Monty Taylor
Removed korr.h and tztime.h from common_includes. Also removed the HAVE_DTRACE block and stuck it in autoconf. |
1 |
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
2 |
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
|
|
3 |
*
|
|
4 |
* Copyright (C) 2008 Sun Microsystems
|
|
5 |
*
|
|
6 |
* This program is free software; you can redistribute it and/or modify
|
|
7 |
* it under the terms of the GNU General Public License as published by
|
|
8 |
* the Free Software Foundation; version 2 of the License.
|
|
9 |
*
|
|
10 |
* This program is distributed in the hope that it will be useful,
|
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13 |
* GNU General Public License for more details.
|
|
14 |
*
|
|
15 |
* You should have received a copy of the GNU General Public License
|
|
16 |
* along with this program; if not, write to the Free Software
|
|
17 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
18 |
*/
|
|
1
by brian
clean slate |
19 |
|
20 |
/**
|
|
1055.2.17
by Jay Pipes
More style cleanups in Session |
21 |
@file Handling of MySQL SQL variables
|
1
by brian
clean slate |
22 |
|
23 |
@details
|
|
24 |
To add a new variable, one has to do the following:
|
|
25 |
||
26 |
- Use one of the 'sys_var... classes from set_var.h or write a specific
|
|
27 |
one for the variable type.
|
|
28 |
- Define it in the 'variable definition list' in this file.
|
|
29 |
- If the variable is thread specific, add it to 'system_variables' struct.
|
|
30 |
If not, add it to mysqld.cc and an declaration in 'mysql_priv.h'
|
|
31 |
- If the variable should be changed from the command line, add a definition
|
|
1410.3.4
by Djellel E. Difallah
update references to old my_'s |
32 |
of it in the option structure list in mysqld.cc
|
1
by brian
clean slate |
33 |
- Don't forget to initialize new fields in global_system_variables and
|
34 |
max_system_variables!
|
|
35 |
||
36 |
@todo
|
|
37 |
Add full support for the variable character_set (for 4.1)
|
|
38 |
||
39 |
@note
|
|
40 |
Be careful with var->save_result: sys_var::check() only updates
|
|
151
by Brian Aker
Ulonglong to uint64_t |
41 |
uint64_t_value; so other members of the union are garbage then; to use
|
1
by brian
clean slate |
42 |
them you must first assign a value to them (in specific ::check() for
|
43 |
example).
|
|
44 |
*/
|
|
520.4.14
by Monty Taylor
Removed korr.h and tztime.h from common_includes. Also removed the HAVE_DTRACE block and stuck it in autoconf. |
45 |
|
1241.9.36
by Monty Taylor
ZOMG. I deleted drizzled/server_includes.h. |
46 |
#include "config.h" |
1410.3.4
by Djellel E. Difallah
update references to old my_'s |
47 |
#include "drizzled/option.h" |
549
by Monty Taylor
Took gettext.h out of header files. |
48 |
#include <drizzled/error.h> |
538
by Monty Taylor
Moved gettext.h into drizzled in anticipation of the new client lib. |
49 |
#include <drizzled/gettext.h> |
520.4.14
by Monty Taylor
Removed korr.h and tztime.h from common_includes. Also removed the HAVE_DTRACE block and stuck it in autoconf. |
50 |
#include <drizzled/tztime.h> |
520.6.7
by Monty Taylor
Moved a bunch of crap out of common_includes. |
51 |
#include <drizzled/data_home.h> |
584.1.15
by Monty Taylor
The mega-patch from hell. Renamed sql_class to session (since that's what it is) and removed it and field and table from common_includes. |
52 |
#include <drizzled/set_var.h> |
53 |
#include <drizzled/session.h> |
|
54 |
#include <drizzled/sql_base.h> |
|
670.2.4
by Monty Taylor
Removed more stuff from the headers. |
55 |
#include <drizzled/lock.h> |
642.1.16
by Lee
header file clean up |
56 |
#include <drizzled/item/uint.h> |
642.1.20
by Lee
header file clean up |
57 |
#include <drizzled/item/null.h> |
670.1.22
by Monty Taylor
Merged from Lee. |
58 |
#include <drizzled/item/float.h> |
1130.1.1
by Monty Taylor
Merged in plugin-slot-reorg patches. |
59 |
#include <drizzled/plugin.h> |
1241.9.12
by Monty Taylor
Trims more out of server_includes.h. |
60 |
#include "drizzled/version.h" |
61 |
#include "drizzled/strfunc.h" |
|
1241.9.64
by Monty Taylor
Moved remaining non-public portions of mysys and mystrings to drizzled/internal. |
62 |
#include "drizzled/internal/m_string.h" |
1241.9.31
by Monty Taylor
Moved global pthread variables into their own header. |
63 |
#include "drizzled/pthread_globals.h" |
1241.9.57
by Monty Taylor
Oy. Bigger change than I normally like - but this stuff is all intertwined. |
64 |
#include "drizzled/charset.h" |
1273.1.2
by Jay Pipes
This patch does not change any algorithms or code paths, |
65 |
#include "drizzled/transaction_services.h" |
1
by brian
clean slate |
66 |
|
873.2.16
by Monty Taylor
Replaced HASH with std::map - avoid utf8 hashing on every sys_var lookup. |
67 |
#include <map> |
68 |
#include <algorithm> |
|
69 |
||
70 |
using namespace std; |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
71 |
|
72 |
namespace drizzled |
|
73 |
{
|
|
74 |
||
75 |
namespace internal |
|
76 |
{
|
|
77 |
extern bool timed_mutexes; |
|
78 |
}
|
|
873.2.16
by Monty Taylor
Replaced HASH with std::map - avoid utf8 hashing on every sys_var lookup. |
79 |
|
1241.9.32
by Monty Taylor
Moved global myisam and heap pointers out of server_includes. |
80 |
extern plugin::StorageEngine *myisam_engine; |
1251.2.3
by Jay Pipes
Merge trunk and resolve conflicts |
81 |
extern bool timed_mutexes; |
1241.9.27
by Monty Taylor
Removed mysys/m_sys.h from server_includes.h. |
82 |
|
1410.3.4
by Djellel E. Difallah
update references to old my_'s |
83 |
extern struct option my_long_options[]; |
264.2.6
by Andrey Hristov
Constify the usage of CHARSET_INFO almost to the last place in the code. |
84 |
extern const CHARSET_INFO *character_set_filesystem; |
629.2.7
by Monty Taylor
Fixed a couple of memory buffer size issues. |
85 |
extern size_t my_thread_stack_size; |
1
by brian
clean slate |
86 |
|
1101.1.27
by Monty Taylor
Fixed the plugin string valgrind leak. |
87 |
class sys_var_pluginvar; |
1
by brian
clean slate |
88 |
static DYNAMIC_ARRAY fixed_show_vars; |
1228.3.1
by Monty Taylor
Removed NameMap. Also remove the aliases from the plugin, since we can just |
89 |
typedef map<string, sys_var *> SystemVariableMap; |
90 |
static SystemVariableMap system_variable_map; |
|
670.2.4
by Monty Taylor
Removed more stuff from the headers. |
91 |
extern char *opt_drizzle_tmpdir; |
1
by brian
clean slate |
92 |
|
1241.9.57
by Monty Taylor
Oy. Bigger change than I normally like - but this stuff is all intertwined. |
93 |
extern TYPELIB tx_isolation_typelib; |
94 |
||
461
by Monty Taylor
Removed NullS. bu-bye. |
95 |
const char *bool_type_names[]= { "OFF", "ON", NULL }; |
1
by brian
clean slate |
96 |
TYPELIB bool_typelib= |
97 |
{
|
|
98 |
array_elements(bool_type_names)-1, "", bool_type_names, NULL |
|
99 |
};
|
|
100 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
101 |
static bool set_option_bit(Session *session, set_var *var); |
102 |
static bool set_option_autocommit(Session *session, set_var *var); |
|
103 |
static int check_pseudo_thread_id(Session *session, set_var *var); |
|
104 |
static int check_tx_isolation(Session *session, set_var *var); |
|
1273.13.24
by Brian Aker
Updating style, simplified code. |
105 |
static void fix_tx_isolation(Session *session, sql_var_t type); |
520.1.22
by Brian Aker
Second pass of thd cleanup |
106 |
static int check_completion_type(Session *session, set_var *var); |
1273.13.24
by Brian Aker
Updating style, simplified code. |
107 |
static void fix_completion_type(Session *session, sql_var_t type); |
108 |
static void fix_max_join_size(Session *session, sql_var_t type); |
|
109 |
static void fix_session_mem_root(Session *session, sql_var_t type); |
|
110 |
static void fix_server_id(Session *session, sql_var_t type); |
|
910.4.10
by Stewart Smith
fix system variables for correct endian architectures. |
111 |
static bool get_unsigned32(Session *session, set_var *var); |
112 |
static bool get_unsigned64(Session *session, set_var *var); |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
113 |
bool throw_bounds_warning(Session *session, bool fixed, bool unsignd, |
1022.2.38
by Monty Taylor
Changed name to std::string. |
114 |
const std::string &name, int64_t val); |
520.1.22
by Brian Aker
Second pass of thd cleanup |
115 |
static unsigned char *get_error_count(Session *session); |
116 |
static unsigned char *get_warning_count(Session *session); |
|
117 |
static unsigned char *get_tmpdir(Session *session); |
|
1
by brian
clean slate |
118 |
|
119 |
/*
|
|
120 |
Variable definition list
|
|
121 |
||
122 |
These are variables that can be set from the command line, in
|
|
123 |
alphabetic order.
|
|
124 |
||
125 |
The variables are linked into the list. A variable is added to
|
|
126 |
it in the constructor (see sys_var class for details).
|
|
127 |
*/
|
|
128 |
static sys_var_chain vars = { NULL, NULL }; |
|
129 |
||
819.1.1
by Toru Maesaka
Removed the 16bit limitation of auto_increment_(increment|offset) system variables |
130 |
static sys_var_session_uint64_t |
1
by brian
clean slate |
131 |
sys_auto_increment_increment(&vars, "auto_increment_increment", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
132 |
&system_variables::auto_increment_increment); |
819.1.1
by Toru Maesaka
Removed the 16bit limitation of auto_increment_(increment|offset) system variables |
133 |
static sys_var_session_uint64_t |
1
by brian
clean slate |
134 |
sys_auto_increment_offset(&vars, "auto_increment_offset", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
135 |
&system_variables::auto_increment_offset); |
1
by brian
clean slate |
136 |
|
575.4.1
by ysano
Rename mysql to drizzle. |
137 |
static sys_var_const_str sys_basedir(&vars, "basedir", drizzle_home); |
619
by Brian Aker
Removed ulong methods from vars. |
138 |
static sys_var_session_uint64_t sys_bulk_insert_buff_size(&vars, "bulk_insert_buffer_size", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
139 |
&system_variables::bulk_insert_buff_size); |
619
by Brian Aker
Removed ulong methods from vars. |
140 |
static sys_var_session_uint32_t sys_completion_type(&vars, "completion_type", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
141 |
&system_variables::completion_type, |
619
by Brian Aker
Removed ulong methods from vars. |
142 |
check_completion_type, |
143 |
fix_completion_type); |
|
1
by brian
clean slate |
144 |
static sys_var_collation_sv |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
145 |
sys_collation_server(&vars, "collation_server", &system_variables::collation_server, &default_charset_info); |
1300.5.3
by Monty Taylor
Removed drizzle_ prefix from some things that don't need it since they're |
146 |
static sys_var_const_str sys_datadir(&vars, "datadir", data_home_real); |
1
by brian
clean slate |
147 |
|
616
by Brian Aker
ulong fixes. |
148 |
static sys_var_session_uint64_t sys_join_buffer_size(&vars, "join_buffer_size", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
149 |
&system_variables::join_buff_size); |
616
by Brian Aker
ulong fixes. |
150 |
static sys_var_session_uint32_t sys_max_allowed_packet(&vars, "max_allowed_packet", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
151 |
&system_variables::max_allowed_packet); |
910.4.10
by Stewart Smith
fix system variables for correct endian architectures. |
152 |
static sys_var_uint64_t_ptr sys_max_connect_errors(&vars, "max_connect_errors", |
616
by Brian Aker
ulong fixes. |
153 |
&max_connect_errors); |
154 |
static sys_var_session_uint64_t sys_max_error_count(&vars, "max_error_count", |
|
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
155 |
&system_variables::max_error_count); |
520.1.22
by Brian Aker
Second pass of thd cleanup |
156 |
static sys_var_session_uint64_t sys_max_heap_table_size(&vars, "max_heap_table_size", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
157 |
&system_variables::max_heap_table_size); |
555
by Monty
Fixed 32-bit issues. |
158 |
static sys_var_session_uint64_t sys_pseudo_thread_id(&vars, "pseudo_thread_id", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
159 |
&system_variables::pseudo_thread_id, |
1018
by Brian Aker
Remove "BINLOG" from variables (we don't need this for our replication). |
160 |
0, check_pseudo_thread_id); |
520.1.22
by Brian Aker
Second pass of thd cleanup |
161 |
static sys_var_session_ha_rows sys_max_join_size(&vars, "max_join_size", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
162 |
&system_variables::max_join_size, |
617
by Brian Aker
ulong fixes |
163 |
fix_max_join_size); |
164 |
static sys_var_session_uint64_t sys_max_seeks_for_key(&vars, "max_seeks_for_key", |
|
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
165 |
&system_variables::max_seeks_for_key); |
615
by Brian Aker
Added 32bit system variable support |
166 |
static sys_var_session_uint64_t sys_max_length_for_sort_data(&vars, "max_length_for_sort_data", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
167 |
&system_variables::max_length_for_sort_data); |
910.4.4
by Stewart Smith
max_sort_length should be size_t everywhere. Causing numerous failures on SPARC and PowerPC due to strang value being retrieved in filesort. Basically, anything with filesort fails without this patch. |
168 |
static sys_var_session_size_t sys_max_sort_length(&vars, "max_sort_length", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
169 |
&system_variables::max_sort_length); |
910.4.10
by Stewart Smith
fix system variables for correct endian architectures. |
170 |
static sys_var_uint64_t_ptr sys_max_write_lock_count(&vars, "max_write_lock_count", |
622.1.1
by Brian Aker
32bit fixes around vars |
171 |
&max_write_lock_count); |
619
by Brian Aker
Removed ulong methods from vars. |
172 |
static sys_var_session_uint64_t sys_min_examined_row_limit(&vars, "min_examined_row_limit", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
173 |
&system_variables::min_examined_row_limit); |
1
by brian
clean slate |
174 |
|
175 |
/* these two cannot be static */
|
|
619
by Brian Aker
Removed ulong methods from vars. |
176 |
static sys_var_session_bool sys_optimizer_prune_level(&vars, "optimizer_prune_level", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
177 |
&system_variables::optimizer_prune_level); |
619
by Brian Aker
Removed ulong methods from vars. |
178 |
static sys_var_session_uint32_t sys_optimizer_search_depth(&vars, "optimizer_search_depth", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
179 |
&system_variables::optimizer_search_depth); |
1
by brian
clean slate |
180 |
|
619
by Brian Aker
Removed ulong methods from vars. |
181 |
static sys_var_session_uint64_t sys_preload_buff_size(&vars, "preload_buffer_size", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
182 |
&system_variables::preload_buff_size); |
619
by Brian Aker
Removed ulong methods from vars. |
183 |
static sys_var_session_uint32_t sys_read_buff_size(&vars, "read_buffer_size", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
184 |
&system_variables::read_buff_size); |
619
by Brian Aker
Removed ulong methods from vars. |
185 |
static sys_var_session_uint32_t sys_read_rnd_buff_size(&vars, "read_rnd_buffer_size", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
186 |
&system_variables::read_rnd_buff_size); |
619
by Brian Aker
Removed ulong methods from vars. |
187 |
static sys_var_session_uint32_t sys_div_precincrement(&vars, "div_precision_increment", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
188 |
&system_variables::div_precincrement); |
1
by brian
clean slate |
189 |
|
629.4.1
by Monty Taylor
First step in support size_t sys_var stuff. |
190 |
static sys_var_session_size_t sys_range_alloc_block_size(&vars, "range_alloc_block_size", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
191 |
&system_variables::range_alloc_block_size); |
615
by Brian Aker
Added 32bit system variable support |
192 |
static sys_var_session_uint32_t sys_query_alloc_block_size(&vars, "query_alloc_block_size", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
193 |
&system_variables::query_alloc_block_size, |
617
by Brian Aker
ulong fixes |
194 |
false, fix_session_mem_root); |
615
by Brian Aker
Added 32bit system variable support |
195 |
static sys_var_session_uint32_t sys_query_prealloc_size(&vars, "query_prealloc_size", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
196 |
&system_variables::query_prealloc_size, |
617
by Brian Aker
ulong fixes |
197 |
false, fix_session_mem_root); |
198 |
static sys_var_readonly sys_tmpdir(&vars, "tmpdir", OPT_GLOBAL, SHOW_CHAR, get_tmpdir); |
|
1
by brian
clean slate |
199 |
|
200 |
static sys_var_const_str_ptr sys_secure_file_priv(&vars, "secure_file_priv", |
|
201 |
&opt_secure_file_priv); |
|
520.4.14
by Monty Taylor
Removed korr.h and tztime.h from common_includes. Also removed the HAVE_DTRACE block and stuck it in autoconf. |
202 |
static sys_var_uint32_t_ptr sys_server_id(&vars, "server_id", &server_id, |
203 |
fix_server_id); |
|
204 |
||
629.4.1
by Monty Taylor
First step in support size_t sys_var stuff. |
205 |
static sys_var_session_size_t sys_sort_buffer(&vars, "sort_buffer_size", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
206 |
&system_variables::sortbuff_size); |
1
by brian
clean slate |
207 |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
208 |
static sys_var_session_storage_engine sys_storage_engine(&vars, "storage_engine", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
209 |
&system_variables::storage_engine); |
1
by brian
clean slate |
210 |
static sys_var_const_str sys_system_time_zone(&vars, "system_time_zone", |
211 |
system_time_zone); |
|
1226.1.3
by Brian Aker
Possible solution for hash/rehash. |
212 |
static sys_var_size_t_ptr sys_table_def_size(&vars, "table_definition_cache", |
213 |
&table_def_size); |
|
910.4.10
by Stewart Smith
fix system variables for correct endian architectures. |
214 |
static sys_var_uint64_t_ptr sys_table_cache_size(&vars, "table_open_cache", |
1
by brian
clean slate |
215 |
&table_cache_size); |
910.4.10
by Stewart Smith
fix system variables for correct endian architectures. |
216 |
static sys_var_uint64_t_ptr sys_table_lock_wait_timeout(&vars, "table_lock_wait_timeout", |
1
by brian
clean slate |
217 |
&table_lock_wait_timeout); |
520.1.22
by Brian Aker
Second pass of thd cleanup |
218 |
static sys_var_session_enum sys_tx_isolation(&vars, "tx_isolation", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
219 |
&system_variables::tx_isolation, |
617
by Brian Aker
ulong fixes |
220 |
&tx_isolation_typelib, |
221 |
fix_tx_isolation, |
|
222 |
check_tx_isolation); |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
223 |
static sys_var_session_uint64_t sys_tmp_table_size(&vars, "tmp_table_size", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
224 |
&system_variables::tmp_table_size); |
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
225 |
static sys_var_bool_ptr sys_timed_mutexes(&vars, "timed_mutexes", &internal::timed_mutexes); |
226 |
static sys_var_const_str sys_version(&vars, "version", version().c_str()); |
|
1228.1.10
by Monty Taylor
Version, length, transaction_log. |
227 |
|
1
by brian
clean slate |
228 |
static sys_var_const_str sys_version_comment(&vars, "version_comment", |
546
by Monty Taylor
Cleaned up version.h. (And by cleaned, I mean removed) |
229 |
COMPILATION_COMMENT); |
1
by brian
clean slate |
230 |
static sys_var_const_str sys_version_compile_machine(&vars, "version_compile_machine", |
1081.1.1
by Monty Taylor
Whole boat-load of build fixes. |
231 |
HOST_CPU); |
1
by brian
clean slate |
232 |
static sys_var_const_str sys_version_compile_os(&vars, "version_compile_os", |
1081.1.1
by Monty Taylor
Whole boat-load of build fixes. |
233 |
HOST_OS); |
234 |
static sys_var_const_str sys_version_compile_vendor(&vars, "version_compile_vendor", |
|
235 |
HOST_VENDOR); |
|
1
by brian
clean slate |
236 |
|
520.1.21
by Brian Aker
THD -> Session rename |
237 |
/* Variables that are bits in Session */
|
1
by brian
clean slate |
238 |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
239 |
sys_var_session_bit sys_autocommit(&vars, "autocommit", 0, |
1
by brian
clean slate |
240 |
set_option_autocommit, |
241 |
OPTION_NOT_AUTOCOMMIT, |
|
242 |
1); |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
243 |
static sys_var_session_bit sys_big_selects(&vars, "sql_big_selects", 0, |
1
by brian
clean slate |
244 |
set_option_bit, |
245 |
OPTION_BIG_SELECTS); |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
246 |
static sys_var_session_bit sys_sql_warnings(&vars, "sql_warnings", 0, |
1
by brian
clean slate |
247 |
set_option_bit, |
248 |
OPTION_WARNINGS); |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
249 |
static sys_var_session_bit sys_sql_notes(&vars, "sql_notes", 0, |
1
by brian
clean slate |
250 |
set_option_bit, |
251 |
OPTION_SQL_NOTES); |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
252 |
static sys_var_session_bit sys_buffer_results(&vars, "sql_buffer_result", 0, |
1
by brian
clean slate |
253 |
set_option_bit, |
254 |
OPTION_BUFFER_RESULT); |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
255 |
static sys_var_session_bit sys_foreign_key_checks(&vars, "foreign_key_checks", 0, |
1
by brian
clean slate |
256 |
set_option_bit, |
1018
by Brian Aker
Remove "BINLOG" from variables (we don't need this for our replication). |
257 |
OPTION_NO_FOREIGN_KEY_CHECKS, 1); |
520.1.22
by Brian Aker
Second pass of thd cleanup |
258 |
static sys_var_session_bit sys_unique_checks(&vars, "unique_checks", 0, |
1
by brian
clean slate |
259 |
set_option_bit, |
1018
by Brian Aker
Remove "BINLOG" from variables (we don't need this for our replication). |
260 |
OPTION_RELAXED_UNIQUE_CHECKS, 1); |
1
by brian
clean slate |
261 |
/* Local state variables */
|
262 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
263 |
static sys_var_session_ha_rows sys_select_limit(&vars, "sql_select_limit", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
264 |
&system_variables::select_limit); |
1018
by Brian Aker
Remove "BINLOG" from variables (we don't need this for our replication). |
265 |
static sys_var_timestamp sys_timestamp(&vars, "timestamp"); |
1
by brian
clean slate |
266 |
static sys_var_last_insert_id |
1018
by Brian Aker
Remove "BINLOG" from variables (we don't need this for our replication). |
267 |
sys_last_insert_id(&vars, "last_insert_id"); |
1
by brian
clean slate |
268 |
/*
|
269 |
identity is an alias for last_insert_id(), so that we are compatible
|
|
270 |
with Sybase
|
|
271 |
*/
|
|
1018
by Brian Aker
Remove "BINLOG" from variables (we don't need this for our replication). |
272 |
static sys_var_last_insert_id sys_identity(&vars, "identity"); |
1
by brian
clean slate |
273 |
|
1018
by Brian Aker
Remove "BINLOG" from variables (we don't need this for our replication). |
274 |
static sys_var_session_lc_time_names sys_lc_time_names(&vars, "lc_time_names"); |
1
by brian
clean slate |
275 |
|
276 |
/*
|
|
277 |
We want statements referring explicitly to @@session.insert_id to be
|
|
278 |
unsafe, because insert_id is modified internally by the slave sql
|
|
279 |
thread when NULL values are inserted in an AUTO_INCREMENT column.
|
|
280 |
This modification interfers with the value of the
|
|
281 |
@@session.insert_id variable if @@session.insert_id is referred
|
|
282 |
explicitly by an insert statement (as is seen by executing "SET
|
|
283 |
@@session.insert_id=0; CREATE TABLE t (a INT, b INT KEY
|
|
284 |
AUTO_INCREMENT); INSERT INTO t(a) VALUES (@@session.insert_id);" in
|
|
285 |
statement-based logging mode: t will be different on master and
|
|
286 |
slave).
|
|
287 |
*/
|
|
626
by Brian Aker
More of the same (ulong/64) |
288 |
static sys_var_readonly sys_error_count(&vars, "error_count", |
289 |
OPT_SESSION, |
|
937.2.3
by Stewart Smith
yet another 4/8byte long issue with variables. Fix up warning and error count to use uint32_t instead. |
290 |
SHOW_INT, |
626
by Brian Aker
More of the same (ulong/64) |
291 |
get_error_count); |
292 |
static sys_var_readonly sys_warning_count(&vars, "warning_count", |
|
293 |
OPT_SESSION, |
|
937.2.3
by Stewart Smith
yet another 4/8byte long issue with variables. Fix up warning and error count to use uint32_t instead. |
294 |
SHOW_INT, |
626
by Brian Aker
More of the same (ulong/64) |
295 |
get_warning_count); |
1
by brian
clean slate |
296 |
|
617
by Brian Aker
ulong fixes |
297 |
sys_var_session_uint64_t sys_group_concat_max_len(&vars, "group_concat_max_len", |
1273.13.75
by Brian Aker
Remove dead globals related to my_sys. |
298 |
&system_variables::group_concat_max_len); |
1
by brian
clean slate |
299 |
|
1018
by Brian Aker
Remove "BINLOG" from variables (we don't need this for our replication). |
300 |
sys_var_session_time_zone sys_time_zone(&vars, "time_zone"); |
1
by brian
clean slate |
301 |
|
302 |
/* Global read-only variable containing hostname */
|
|
303 |
static sys_var_const_str sys_hostname(&vars, "hostname", glob_hostname); |
|
304 |
||
305 |
/*
|
|
306 |
Additional variables (not derived from sys_var class, not accessible as
|
|
307 |
@@varname in SELECT or SET). Sorted in alphabetical order to facilitate
|
|
308 |
maintenance - SHOW VARIABLES will sort its output.
|
|
309 |
TODO: remove this list completely
|
|
310 |
*/
|
|
311 |
||
1273.13.73
by Brian Aker
Remove typedef and drop some dead code. |
312 |
#define FIXED_VARS_SIZE (sizeof(fixed_vars) / sizeof(drizzle_show_var))
|
313 |
static drizzle_show_var fixed_vars[]= { |
|
1192.3.43
by Monty Taylor
Removed many, many checks for functions that do not need to be checked. |
314 |
{"back_log", (char*) &back_log, SHOW_INT}, |
315 |
{"language", language, SHOW_CHAR}, |
|
316 |
{"pid_file", (char*) pidfile_name, SHOW_CHAR}, |
|
317 |
{"plugin_dir", (char*) opt_plugin_dir, SHOW_CHAR}, |
|
318 |
{"thread_stack", (char*) &my_thread_stack_size, SHOW_INT}, |
|
1
by brian
clean slate |
319 |
};
|
320 |
||
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
321 |
bool sys_var::check(Session *, set_var *var) |
1
by brian
clean slate |
322 |
{
|
151
by Brian Aker
Ulonglong to uint64_t |
323 |
var->save_result.uint64_t_value= var->value->val_int(); |
1
by brian
clean slate |
324 |
return 0; |
325 |
}
|
|
326 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
327 |
bool sys_var_str::check(Session *session, set_var *var) |
1
by brian
clean slate |
328 |
{
|
329 |
int res; |
|
330 |
if (!check_func) |
|
331 |
return 0; |
|
332 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
333 |
if ((res=(*check_func)(session, var)) < 0) |
1055.2.20
by Jay Pipes
Refactors sys_var class -- doxygenates and documents the class members and functions. Protects all member variables and adds public getters/setters. |
334 |
my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), getName().c_str(), var->value->str_value.ptr()); |
1
by brian
clean slate |
335 |
return res; |
336 |
}
|
|
337 |
||
338 |
/*
|
|
339 |
Functions to check and update variables
|
|
340 |
*/
|
|
341 |
||
342 |
||
343 |
/**
|
|
344 |
Set the OPTION_BIG_SELECTS flag if max_join_size == HA_POS_ERROR.
|
|
345 |
*/
|
|
346 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
347 |
static void fix_max_join_size(Session *session, sql_var_t type) |
1
by brian
clean slate |
348 |
{
|
349 |
if (type != OPT_GLOBAL) |
|
350 |
{
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
351 |
if (session->variables.max_join_size == HA_POS_ERROR) |
352 |
session->options|= OPTION_BIG_SELECTS; |
|
1
by brian
clean slate |
353 |
else
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
354 |
session->options&= ~OPTION_BIG_SELECTS; |
1
by brian
clean slate |
355 |
}
|
356 |
}
|
|
357 |
||
358 |
||
359 |
/**
|
|
360 |
Can't change the 'next' tx_isolation while we are already in
|
|
361 |
a transaction
|
|
362 |
*/
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
363 |
static int check_tx_isolation(Session *session, set_var *var) |
1
by brian
clean slate |
364 |
{
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
365 |
if (var->type == OPT_DEFAULT && (session->server_status & SERVER_STATUS_IN_TRANS)) |
1
by brian
clean slate |
366 |
{
|
367 |
my_error(ER_CANT_CHANGE_TX_ISOLATION, MYF(0)); |
|
368 |
return 1; |
|
369 |
}
|
|
370 |
return 0; |
|
371 |
}
|
|
372 |
||
373 |
/*
|
|
374 |
If one doesn't use the SESSION modifier, the isolation level
|
|
375 |
is only active for the next command.
|
|
376 |
*/
|
|
1273.13.24
by Brian Aker
Updating style, simplified code. |
377 |
static void fix_tx_isolation(Session *session, sql_var_t type) |
1
by brian
clean slate |
378 |
{
|
379 |
if (type == OPT_SESSION) |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
380 |
session->session_tx_isolation= ((enum_tx_isolation) |
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
381 |
session->variables.tx_isolation); |
1
by brian
clean slate |
382 |
}
|
383 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
384 |
static void fix_completion_type(Session *, sql_var_t) {} |
1
by brian
clean slate |
385 |
|
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
386 |
static int check_completion_type(Session *, set_var *var) |
1
by brian
clean slate |
387 |
{
|
152
by Brian Aker
longlong replacement |
388 |
int64_t val= var->value->val_int(); |
1
by brian
clean slate |
389 |
if (val < 0 || val > 2) |
390 |
{
|
|
391 |
char buf[64]; |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
392 |
my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), var->var->getName().c_str(), internal::llstr(val, buf)); |
1
by brian
clean slate |
393 |
return 1; |
394 |
}
|
|
395 |
return 0; |
|
396 |
}
|
|
397 |
||
398 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
399 |
static void fix_session_mem_root(Session *session, sql_var_t type) |
520.1.22
by Brian Aker
Second pass of thd cleanup |
400 |
{
|
401 |
if (type != OPT_GLOBAL) |
|
1485
by Brian Aker
Updates to confine memroot |
402 |
session->mem_root->reset_root_defaults(session->variables.query_alloc_block_size, |
403 |
session->variables.query_prealloc_size); |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
404 |
}
|
405 |
||
406 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
407 |
static void fix_server_id(Session *, sql_var_t) |
1
by brian
clean slate |
408 |
{
|
409 |
}
|
|
410 |
||
411 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
412 |
bool throw_bounds_warning(Session *session, bool fixed, bool unsignd, |
1022.2.38
by Monty Taylor
Changed name to std::string. |
413 |
const std::string &name, int64_t val) |
1
by brian
clean slate |
414 |
{
|
415 |
if (fixed) |
|
416 |
{
|
|
417 |
char buf[22]; |
|
418 |
||
419 |
if (unsignd) |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
420 |
internal::ullstr((uint64_t) val, buf); |
1
by brian
clean slate |
421 |
else
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
422 |
internal::llstr(val, buf); |
1
by brian
clean slate |
423 |
|
910.4.10
by Stewart Smith
fix system variables for correct endian architectures. |
424 |
push_warning_printf(session, DRIZZLE_ERROR::WARN_LEVEL_ERROR, |
1
by brian
clean slate |
425 |
ER_TRUNCATED_WRONG_VALUE, |
1022.2.38
by Monty Taylor
Changed name to std::string. |
426 |
ER(ER_TRUNCATED_WRONG_VALUE), name.c_str(), buf); |
1
by brian
clean slate |
427 |
}
|
51.1.46
by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE |
428 |
return false; |
1
by brian
clean slate |
429 |
}
|
430 |
||
1251.2.2
by Jay Pipes
Pulls MyISAM-specific server variables into the MyISAM |
431 |
uint64_t fix_unsigned(Session *session, uint64_t num, |
1410.3.4
by Djellel E. Difallah
update references to old my_'s |
432 |
const struct option *option_limits) |
1
by brian
clean slate |
433 |
{
|
143
by Brian Aker
Bool cleanup. |
434 |
bool fixed= false; |
151
by Brian Aker
Ulonglong to uint64_t |
435 |
uint64_t out= getopt_ull_limit_value(num, option_limits, &fixed); |
1
by brian
clean slate |
436 |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
437 |
throw_bounds_warning(session, fixed, true, option_limits->name, (int64_t) num); |
1
by brian
clean slate |
438 |
return out; |
439 |
}
|
|
440 |
||
629.4.1
by Monty Taylor
First step in support size_t sys_var stuff. |
441 |
|
442 |
static size_t fix_size_t(Session *session, size_t num, |
|
1410.3.4
by Djellel E. Difallah
update references to old my_'s |
443 |
const struct option *option_limits) |
629.4.1
by Monty Taylor
First step in support size_t sys_var stuff. |
444 |
{
|
445 |
bool fixed= false; |
|
446 |
size_t out= (size_t)getopt_ull_limit_value(num, option_limits, &fixed); |
|
447 |
||
448 |
throw_bounds_warning(session, fixed, true, option_limits->name, (int64_t) num); |
|
449 |
return out; |
|
450 |
}
|
|
451 |
||
1124.2.7
by Diego Medina
reverted transaction_prealloc_size to an uint32_t |
452 |
static bool get_unsigned32(Session *session, set_var *var) |
910.4.10
by Stewart Smith
fix system variables for correct endian architectures. |
453 |
{
|
454 |
if (var->value->unsigned_flag) |
|
1124.2.7
by Diego Medina
reverted transaction_prealloc_size to an uint32_t |
455 |
var->save_result.uint32_t_value= |
456 |
static_cast<uint32_t>(var->value->val_int()); |
|
910.4.10
by Stewart Smith
fix system variables for correct endian architectures. |
457 |
else
|
458 |
{
|
|
459 |
int64_t v= var->value->val_int(); |
|
1124.2.7
by Diego Medina
reverted transaction_prealloc_size to an uint32_t |
460 |
if (v > UINT32_MAX) |
461 |
throw_bounds_warning(session, true, true,var->var->getName().c_str(), v); |
|
462 |
||
463 |
var->save_result.uint32_t_value= |
|
464 |
static_cast<uint32_t>((v > UINT32_MAX) ? UINT32_MAX : (v < 0) ? 0 : v); |
|
910.4.10
by Stewart Smith
fix system variables for correct endian architectures. |
465 |
}
|
1124.2.7
by Diego Medina
reverted transaction_prealloc_size to an uint32_t |
466 |
return false; |
910.4.10
by Stewart Smith
fix system variables for correct endian architectures. |
467 |
}
|
468 |
||
469 |
static bool get_unsigned64(Session *, set_var *var) |
|
470 |
{
|
|
471 |
if (var->value->unsigned_flag) |
|
472 |
var->save_result.uint64_t_value=(uint64_t) var->value->val_int(); |
|
473 |
else
|
|
474 |
{
|
|
475 |
int64_t v= var->value->val_int(); |
|
476 |
var->save_result.uint64_t_value= (uint64_t) ((v < 0) ? 0 : v); |
|
1
by brian
clean slate |
477 |
}
|
478 |
return 0; |
|
479 |
}
|
|
480 |
||
629.4.1
by Monty Taylor
First step in support size_t sys_var stuff. |
481 |
static bool get_size_t(Session *, set_var *var) |
482 |
{
|
|
483 |
if (var->value->unsigned_flag) |
|
910.4.9
by Stewart Smith
fix size_t variables on platforms where sizeof(size_t)=4 |
484 |
var->save_result.size_t_value= (size_t) var->value->val_int(); |
629.4.1
by Monty Taylor
First step in support size_t sys_var stuff. |
485 |
else
|
486 |
{
|
|
892.2.2
by Monty Taylor
More solaris warnings. |
487 |
ssize_t v= (ssize_t)var->value->val_int(); |
910.4.9
by Stewart Smith
fix size_t variables on platforms where sizeof(size_t)=4 |
488 |
var->save_result.size_t_value= (size_t) ((v < 0) ? 0 : v); |
629.4.1
by Monty Taylor
First step in support size_t sys_var stuff. |
489 |
}
|
490 |
return 0; |
|
491 |
}
|
|
492 |
||
910.4.10
by Stewart Smith
fix system variables for correct endian architectures. |
493 |
bool sys_var_uint32_t_ptr::check(Session *, set_var *var) |
494 |
{
|
|
988.2.2
by Trond Norbye
size_t and uint64_t is not the same in 32 bit builds. Add explicit casting |
495 |
var->save_result.uint32_t_value= (uint32_t)var->value->val_int(); |
1
by brian
clean slate |
496 |
return 0; |
497 |
}
|
|
498 |
||
520.4.14
by Monty Taylor
Removed korr.h and tztime.h from common_includes. Also removed the HAVE_DTRACE block and stuck it in autoconf. |
499 |
bool sys_var_uint32_t_ptr::update(Session *session, set_var *var) |
500 |
{
|
|
501 |
uint32_t tmp= var->save_result.uint32_t_value; |
|
502 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
503 |
if (option_limits) |
|
910.4.10
by Stewart Smith
fix system variables for correct endian architectures. |
504 |
{
|
505 |
uint32_t newvalue= (uint32_t) fix_unsigned(session, tmp, option_limits); |
|
506 |
if(newvalue==tmp) |
|
507 |
*value= newvalue; |
|
508 |
}
|
|
520.4.14
by Monty Taylor
Removed korr.h and tztime.h from common_includes. Also removed the HAVE_DTRACE block and stuck it in autoconf. |
509 |
else
|
510 |
*value= (uint32_t) tmp; |
|
511 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
|
512 |
return 0; |
|
513 |
}
|
|
514 |
||
515 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
516 |
void sys_var_uint32_t_ptr::set_default(Session *, sql_var_t) |
520.4.14
by Monty Taylor
Removed korr.h and tztime.h from common_includes. Also removed the HAVE_DTRACE block and stuck it in autoconf. |
517 |
{
|
518 |
bool not_used; |
|
519 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
892.2.2
by Monty Taylor
More solaris warnings. |
520 |
*value= (uint32_t)getopt_ull_limit_value((uint32_t) option_limits->def_value, |
521 |
option_limits, ¬_used); |
|
520.4.14
by Monty Taylor
Removed korr.h and tztime.h from common_includes. Also removed the HAVE_DTRACE block and stuck it in autoconf. |
522 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
523 |
}
|
|
524 |
||
1
by brian
clean slate |
525 |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
526 |
bool sys_var_uint64_t_ptr::update(Session *session, set_var *var) |
1
by brian
clean slate |
527 |
{
|
151
by Brian Aker
Ulonglong to uint64_t |
528 |
uint64_t tmp= var->save_result.uint64_t_value; |
1
by brian
clean slate |
529 |
pthread_mutex_lock(&LOCK_global_system_variables); |
530 |
if (option_limits) |
|
910.4.10
by Stewart Smith
fix system variables for correct endian architectures. |
531 |
{
|
532 |
uint64_t newvalue= (uint64_t) fix_unsigned(session, tmp, option_limits); |
|
533 |
if(newvalue==tmp) |
|
534 |
*value= newvalue; |
|
535 |
}
|
|
1
by brian
clean slate |
536 |
else
|
151
by Brian Aker
Ulonglong to uint64_t |
537 |
*value= (uint64_t) tmp; |
1
by brian
clean slate |
538 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
539 |
return 0; |
|
540 |
}
|
|
541 |
||
542 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
543 |
void sys_var_uint64_t_ptr::set_default(Session *, sql_var_t) |
1
by brian
clean slate |
544 |
{
|
143
by Brian Aker
Bool cleanup. |
545 |
bool not_used; |
1
by brian
clean slate |
546 |
pthread_mutex_lock(&LOCK_global_system_variables); |
151
by Brian Aker
Ulonglong to uint64_t |
547 |
*value= getopt_ull_limit_value((uint64_t) option_limits->def_value, |
1
by brian
clean slate |
548 |
option_limits, ¬_used); |
549 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
|
550 |
}
|
|
551 |
||
552 |
||
629.4.1
by Monty Taylor
First step in support size_t sys_var stuff. |
553 |
bool sys_var_size_t_ptr::update(Session *session, set_var *var) |
554 |
{
|
|
555 |
size_t tmp= var->save_result.size_t_value; |
|
556 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
557 |
if (option_limits) |
|
558 |
*value= fix_size_t(session, tmp, option_limits); |
|
559 |
else
|
|
560 |
*value= tmp; |
|
561 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
|
562 |
return 0; |
|
563 |
}
|
|
564 |
||
565 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
566 |
void sys_var_size_t_ptr::set_default(Session *, sql_var_t) |
629.4.1
by Monty Taylor
First step in support size_t sys_var stuff. |
567 |
{
|
568 |
bool not_used; |
|
569 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
570 |
*value= (size_t)getopt_ull_limit_value((size_t) option_limits->def_value, |
|
571 |
option_limits, ¬_used); |
|
572 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
|
573 |
}
|
|
574 |
||
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
575 |
bool sys_var_bool_ptr::update(Session *, set_var *var) |
1
by brian
clean slate |
576 |
{
|
576
by Brian Aker
ulong conversion work |
577 |
*value= (bool) var->save_result.uint32_t_value; |
1
by brian
clean slate |
578 |
return 0; |
579 |
}
|
|
580 |
||
581 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
582 |
void sys_var_bool_ptr::set_default(Session *, sql_var_t) |
1
by brian
clean slate |
583 |
{
|
146
by Brian Aker
my_bool cleanup. |
584 |
*value= (bool) option_limits->def_value; |
585 |
}
|
|
586 |
||
1
by brian
clean slate |
587 |
|
615
by Brian Aker
Added 32bit system variable support |
588 |
/*
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
589 |
32 bit types for session variables
|
615
by Brian Aker
Added 32bit system variable support |
590 |
*/
|
591 |
bool sys_var_session_uint32_t::check(Session *session, set_var *var) |
|
592 |
{
|
|
910.4.10
by Stewart Smith
fix system variables for correct endian architectures. |
593 |
return (get_unsigned32(session, var) || |
615
by Brian Aker
Added 32bit system variable support |
594 |
(check_func && (*check_func)(session, var))); |
595 |
}
|
|
596 |
||
597 |
bool sys_var_session_uint32_t::update(Session *session, set_var *var) |
|
598 |
{
|
|
910.4.10
by Stewart Smith
fix system variables for correct endian architectures. |
599 |
uint64_t tmp= (uint64_t) var->save_result.uint32_t_value; |
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
600 |
|
615
by Brian Aker
Added 32bit system variable support |
601 |
/* Don't use bigger value than given with --maximum-variable-name=.. */
|
602 |
if ((uint32_t) tmp > max_system_variables.*offset) |
|
603 |
{
|
|
1055.2.20
by Jay Pipes
Refactors sys_var class -- doxygenates and documents the class members and functions. Protects all member variables and adds public getters/setters. |
604 |
throw_bounds_warning(session, true, true, getName(), (int64_t) tmp); |
615
by Brian Aker
Added 32bit system variable support |
605 |
tmp= max_system_variables.*offset; |
606 |
}
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
607 |
|
615
by Brian Aker
Added 32bit system variable support |
608 |
if (option_limits) |
609 |
tmp= (uint32_t) fix_unsigned(session, tmp, option_limits); |
|
610 |
else if (tmp > UINT32_MAX) |
|
611 |
{
|
|
612 |
tmp= UINT32_MAX; |
|
1055.2.20
by Jay Pipes
Refactors sys_var class -- doxygenates and documents the class members and functions. Protects all member variables and adds public getters/setters. |
613 |
throw_bounds_warning(session, true, true, getName(), (int64_t) var->save_result.uint64_t_value); |
615
by Brian Aker
Added 32bit system variable support |
614 |
}
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
615 |
|
615
by Brian Aker
Added 32bit system variable support |
616 |
if (var->type == OPT_GLOBAL) |
617 |
global_system_variables.*offset= (uint32_t) tmp; |
|
618 |
else
|
|
619 |
session->variables.*offset= (uint32_t) tmp; |
|
620 |
||
621 |
return 0; |
|
622 |
}
|
|
623 |
||
624 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
625 |
void sys_var_session_uint32_t::set_default(Session *session, sql_var_t type) |
615
by Brian Aker
Added 32bit system variable support |
626 |
{
|
627 |
if (type == OPT_GLOBAL) |
|
628 |
{
|
|
629 |
bool not_used; |
|
630 |
/* We will not come here if option_limits is not set */
|
|
631 |
global_system_variables.*offset= |
|
632 |
(uint32_t) getopt_ull_limit_value((uint32_t) option_limits->def_value, |
|
633 |
option_limits, ¬_used); |
|
634 |
}
|
|
635 |
else
|
|
636 |
session->variables.*offset= global_system_variables.*offset; |
|
637 |
}
|
|
638 |
||
639 |
||
640 |
unsigned char *sys_var_session_uint32_t::value_ptr(Session *session, |
|
1273.13.24
by Brian Aker
Updating style, simplified code. |
641 |
sql_var_t type, |
779.3.10
by Monty Taylor
Turned on -Wshadow. |
642 |
const LEX_STRING *) |
615
by Brian Aker
Added 32bit system variable support |
643 |
{
|
644 |
if (type == OPT_GLOBAL) |
|
645 |
return (unsigned char*) &(global_system_variables.*offset); |
|
646 |
return (unsigned char*) &(session->variables.*offset); |
|
647 |
}
|
|
648 |
||
1
by brian
clean slate |
649 |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
650 |
bool sys_var_session_ha_rows::update(Session *session, set_var *var) |
1
by brian
clean slate |
651 |
{
|
151
by Brian Aker
Ulonglong to uint64_t |
652 |
uint64_t tmp= var->save_result.uint64_t_value; |
1
by brian
clean slate |
653 |
|
654 |
/* Don't use bigger value than given with --maximum-variable-name=.. */
|
|
655 |
if ((ha_rows) tmp > max_system_variables.*offset) |
|
656 |
tmp= max_system_variables.*offset; |
|
657 |
||
658 |
if (option_limits) |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
659 |
tmp= (ha_rows) fix_unsigned(session, tmp, option_limits); |
1
by brian
clean slate |
660 |
if (var->type == OPT_GLOBAL) |
661 |
{
|
|
662 |
/* Lock is needed to make things safe on 32 bit systems */
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
663 |
pthread_mutex_lock(&LOCK_global_system_variables); |
1
by brian
clean slate |
664 |
global_system_variables.*offset= (ha_rows) tmp; |
665 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
|
666 |
}
|
|
667 |
else
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
668 |
session->variables.*offset= (ha_rows) tmp; |
1
by brian
clean slate |
669 |
return 0; |
670 |
}
|
|
671 |
||
672 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
673 |
void sys_var_session_ha_rows::set_default(Session *session, sql_var_t type) |
1
by brian
clean slate |
674 |
{
|
675 |
if (type == OPT_GLOBAL) |
|
676 |
{
|
|
143
by Brian Aker
Bool cleanup. |
677 |
bool not_used; |
1
by brian
clean slate |
678 |
/* We will not come here if option_limits is not set */
|
679 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
680 |
global_system_variables.*offset= |
|
681 |
(ha_rows) getopt_ull_limit_value((ha_rows) option_limits->def_value, |
|
682 |
option_limits, ¬_used); |
|
683 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
|
684 |
}
|
|
685 |
else
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
686 |
session->variables.*offset= global_system_variables.*offset; |
1
by brian
clean slate |
687 |
}
|
688 |
||
689 |
||
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
690 |
unsigned char *sys_var_session_ha_rows::value_ptr(Session *session, |
1273.13.24
by Brian Aker
Updating style, simplified code. |
691 |
sql_var_t type, |
779.3.10
by Monty Taylor
Turned on -Wshadow. |
692 |
const LEX_STRING *) |
1
by brian
clean slate |
693 |
{
|
694 |
if (type == OPT_GLOBAL) |
|
481
by Brian Aker
Remove all of uchar. |
695 |
return (unsigned char*) &(global_system_variables.*offset); |
520.1.22
by Brian Aker
Second pass of thd cleanup |
696 |
return (unsigned char*) &(session->variables.*offset); |
1
by brian
clean slate |
697 |
}
|
698 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
699 |
bool sys_var_session_uint64_t::check(Session *session, set_var *var) |
1
by brian
clean slate |
700 |
{
|
910.4.10
by Stewart Smith
fix system variables for correct endian architectures. |
701 |
return (get_unsigned64(session, var) || |
555
by Monty
Fixed 32-bit issues. |
702 |
(check_func && (*check_func)(session, var))); |
1
by brian
clean slate |
703 |
}
|
704 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
705 |
bool sys_var_session_uint64_t::update(Session *session, set_var *var) |
1
by brian
clean slate |
706 |
{
|
151
by Brian Aker
Ulonglong to uint64_t |
707 |
uint64_t tmp= var->save_result.uint64_t_value; |
1
by brian
clean slate |
708 |
|
709 |
if (tmp > max_system_variables.*offset) |
|
1124.2.2
by Diego Medina
Added missing { } for if statement |
710 |
{
|
711 |
throw_bounds_warning(session, true, true, getName(), (int64_t) tmp); |
|
1
by brian
clean slate |
712 |
tmp= max_system_variables.*offset; |
1124.2.2
by Diego Medina
Added missing { } for if statement |
713 |
}
|
1
by brian
clean slate |
714 |
|
715 |
if (option_limits) |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
716 |
tmp= fix_unsigned(session, tmp, option_limits); |
1
by brian
clean slate |
717 |
if (var->type == OPT_GLOBAL) |
718 |
{
|
|
719 |
/* Lock is needed to make things safe on 32 bit systems */
|
|
720 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
151
by Brian Aker
Ulonglong to uint64_t |
721 |
global_system_variables.*offset= (uint64_t) tmp; |
1
by brian
clean slate |
722 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
723 |
}
|
|
724 |
else
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
725 |
session->variables.*offset= (uint64_t) tmp; |
1
by brian
clean slate |
726 |
return 0; |
727 |
}
|
|
728 |
||
729 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
730 |
void sys_var_session_uint64_t::set_default(Session *session, sql_var_t type) |
1
by brian
clean slate |
731 |
{
|
732 |
if (type == OPT_GLOBAL) |
|
733 |
{
|
|
143
by Brian Aker
Bool cleanup. |
734 |
bool not_used; |
1
by brian
clean slate |
735 |
pthread_mutex_lock(&LOCK_global_system_variables); |
736 |
global_system_variables.*offset= |
|
151
by Brian Aker
Ulonglong to uint64_t |
737 |
getopt_ull_limit_value((uint64_t) option_limits->def_value, |
1
by brian
clean slate |
738 |
option_limits, ¬_used); |
739 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
|
740 |
}
|
|
741 |
else
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
742 |
session->variables.*offset= global_system_variables.*offset; |
1
by brian
clean slate |
743 |
}
|
744 |
||
745 |
||
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
746 |
unsigned char *sys_var_session_uint64_t::value_ptr(Session *session, |
1273.13.24
by Brian Aker
Updating style, simplified code. |
747 |
sql_var_t type, |
779.3.10
by Monty Taylor
Turned on -Wshadow. |
748 |
const LEX_STRING *) |
1
by brian
clean slate |
749 |
{
|
750 |
if (type == OPT_GLOBAL) |
|
481
by Brian Aker
Remove all of uchar. |
751 |
return (unsigned char*) &(global_system_variables.*offset); |
520.1.22
by Brian Aker
Second pass of thd cleanup |
752 |
return (unsigned char*) &(session->variables.*offset); |
1
by brian
clean slate |
753 |
}
|
754 |
||
629.4.1
by Monty Taylor
First step in support size_t sys_var stuff. |
755 |
bool sys_var_session_size_t::check(Session *session, set_var *var) |
756 |
{
|
|
757 |
return (get_size_t(session, var) || |
|
758 |
(check_func && (*check_func)(session, var))); |
|
759 |
}
|
|
760 |
||
761 |
bool sys_var_session_size_t::update(Session *session, set_var *var) |
|
762 |
{
|
|
763 |
size_t tmp= var->save_result.size_t_value; |
|
764 |
||
765 |
if (tmp > max_system_variables.*offset) |
|
766 |
tmp= max_system_variables.*offset; |
|
767 |
||
768 |
if (option_limits) |
|
769 |
tmp= fix_size_t(session, tmp, option_limits); |
|
770 |
if (var->type == OPT_GLOBAL) |
|
771 |
{
|
|
772 |
/* Lock is needed to make things safe on 32 bit systems */
|
|
773 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
774 |
global_system_variables.*offset= tmp; |
|
775 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
|
776 |
}
|
|
777 |
else
|
|
778 |
session->variables.*offset= tmp; |
|
779 |
return 0; |
|
780 |
}
|
|
781 |
||
782 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
783 |
void sys_var_session_size_t::set_default(Session *session, sql_var_t type) |
629.4.1
by Monty Taylor
First step in support size_t sys_var stuff. |
784 |
{
|
785 |
if (type == OPT_GLOBAL) |
|
786 |
{
|
|
787 |
bool not_used; |
|
788 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
789 |
global_system_variables.*offset= |
|
892.2.2
by Monty Taylor
More solaris warnings. |
790 |
(size_t)getopt_ull_limit_value((size_t) option_limits->def_value, |
791 |
option_limits, ¬_used); |
|
629.4.1
by Monty Taylor
First step in support size_t sys_var stuff. |
792 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
793 |
}
|
|
794 |
else
|
|
795 |
session->variables.*offset= global_system_variables.*offset; |
|
796 |
}
|
|
797 |
||
798 |
||
799 |
unsigned char *sys_var_session_size_t::value_ptr(Session *session, |
|
1273.13.24
by Brian Aker
Updating style, simplified code. |
800 |
sql_var_t type, |
779.3.10
by Monty Taylor
Turned on -Wshadow. |
801 |
const LEX_STRING *) |
629.4.1
by Monty Taylor
First step in support size_t sys_var stuff. |
802 |
{
|
803 |
if (type == OPT_GLOBAL) |
|
804 |
return (unsigned char*) &(global_system_variables.*offset); |
|
805 |
return (unsigned char*) &(session->variables.*offset); |
|
806 |
}
|
|
807 |
||
1
by brian
clean slate |
808 |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
809 |
bool sys_var_session_bool::update(Session *session, set_var *var) |
1
by brian
clean slate |
810 |
{
|
811 |
if (var->type == OPT_GLOBAL) |
|
576
by Brian Aker
ulong conversion work |
812 |
global_system_variables.*offset= (bool) var->save_result.uint32_t_value; |
1
by brian
clean slate |
813 |
else
|
576
by Brian Aker
ulong conversion work |
814 |
session->variables.*offset= (bool) var->save_result.uint32_t_value; |
1
by brian
clean slate |
815 |
return 0; |
816 |
}
|
|
817 |
||
818 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
819 |
void sys_var_session_bool::set_default(Session *session, sql_var_t type) |
1
by brian
clean slate |
820 |
{
|
821 |
if (type == OPT_GLOBAL) |
|
200
by Brian Aker
my_bool from handler and set_var |
822 |
global_system_variables.*offset= (bool) option_limits->def_value; |
1
by brian
clean slate |
823 |
else
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
824 |
session->variables.*offset= global_system_variables.*offset; |
1
by brian
clean slate |
825 |
}
|
826 |
||
827 |
||
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
828 |
unsigned char *sys_var_session_bool::value_ptr(Session *session, |
1273.13.24
by Brian Aker
Updating style, simplified code. |
829 |
sql_var_t type, |
779.3.10
by Monty Taylor
Turned on -Wshadow. |
830 |
const LEX_STRING *) |
1
by brian
clean slate |
831 |
{
|
832 |
if (type == OPT_GLOBAL) |
|
481
by Brian Aker
Remove all of uchar. |
833 |
return (unsigned char*) &(global_system_variables.*offset); |
520.1.22
by Brian Aker
Second pass of thd cleanup |
834 |
return (unsigned char*) &(session->variables.*offset); |
1
by brian
clean slate |
835 |
}
|
836 |
||
837 |
||
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
838 |
bool sys_var::check_enum(Session *, |
77.1.45
by Monty Taylor
Warning fixes. |
839 |
set_var *var, const TYPELIB *enum_names) |
1
by brian
clean slate |
840 |
{
|
841 |
char buff[STRING_BUFFER_USUAL_SIZE]; |
|
842 |
const char *value; |
|
843 |
String str(buff, sizeof(buff), system_charset_info), *res; |
|
844 |
||
845 |
if (var->value->result_type() == STRING_RESULT) |
|
846 |
{
|
|
971.2.1
by Eric Day
Fix for bug #311025. This was due to code that was removed during ulong cleanup (r576). |
847 |
if (!(res=var->value->val_str(&str)) || |
848 |
(var->save_result.uint32_t_value= find_type(enum_names, res->ptr(), |
|
849 |
res->length(),1)) == 0) |
|
1
by brian
clean slate |
850 |
{
|
851 |
value= res ? res->c_ptr() : "NULL"; |
|
852 |
goto err; |
|
853 |
}
|
|
971.2.1
by Eric Day
Fix for bug #311025. This was due to code that was removed during ulong cleanup (r576). |
854 |
|
855 |
var->save_result.uint32_t_value--; |
|
1
by brian
clean slate |
856 |
}
|
857 |
else
|
|
858 |
{
|
|
151
by Brian Aker
Ulonglong to uint64_t |
859 |
uint64_t tmp=var->value->val_int(); |
1
by brian
clean slate |
860 |
if (tmp >= enum_names->count) |
861 |
{
|
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
862 |
internal::llstr(tmp,buff); |
1
by brian
clean slate |
863 |
value=buff; // Wrong value is here |
864 |
goto err; |
|
865 |
}
|
|
576
by Brian Aker
ulong conversion work |
866 |
var->save_result.uint32_t_value= (uint32_t) tmp; // Save for update |
1
by brian
clean slate |
867 |
}
|
868 |
return 0; |
|
869 |
||
870 |
err: |
|
1022.2.38
by Monty Taylor
Changed name to std::string. |
871 |
my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), name.c_str(), value); |
1
by brian
clean slate |
872 |
return 1; |
873 |
}
|
|
874 |
||
875 |
||
876 |
/**
|
|
877 |
Return an Item for a variable.
|
|
878 |
||
879 |
Used with @@[global.]variable_name.
|
|
880 |
||
881 |
If type is not given, return local value if exists, else global.
|
|
882 |
*/
|
|
883 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
884 |
Item *sys_var::item(Session *session, sql_var_t var_type, const LEX_STRING *base) |
1
by brian
clean slate |
885 |
{
|
886 |
if (check_type(var_type)) |
|
887 |
{
|
|
888 |
if (var_type != OPT_DEFAULT) |
|
889 |
{
|
|
890 |
my_error(ER_INCORRECT_GLOBAL_LOCAL_VAR, MYF(0), |
|
1022.2.38
by Monty Taylor
Changed name to std::string. |
891 |
name.c_str(), var_type == OPT_GLOBAL ? "SESSION" : "GLOBAL"); |
1
by brian
clean slate |
892 |
return 0; |
893 |
}
|
|
894 |
/* As there was no local variable, return the global value */
|
|
895 |
var_type= OPT_GLOBAL; |
|
896 |
}
|
|
897 |
switch (show_type()) { |
|
625
by Brian Aker
ulong/64 bit straighten out. |
898 |
case SHOW_LONG: |
1
by brian
clean slate |
899 |
case SHOW_INT: |
900 |
{
|
|
482
by Brian Aker
Remove uint. |
901 |
uint32_t value; |
1
by brian
clean slate |
902 |
pthread_mutex_lock(&LOCK_global_system_variables); |
520.1.22
by Brian Aker
Second pass of thd cleanup |
903 |
value= *(uint*) value_ptr(session, var_type, base); |
1
by brian
clean slate |
904 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
151
by Brian Aker
Ulonglong to uint64_t |
905 |
return new Item_uint((uint64_t) value); |
1
by brian
clean slate |
906 |
}
|
907 |
case SHOW_LONGLONG: |
|
908 |
{
|
|
152
by Brian Aker
longlong replacement |
909 |
int64_t value; |
1
by brian
clean slate |
910 |
pthread_mutex_lock(&LOCK_global_system_variables); |
520.1.22
by Brian Aker
Second pass of thd cleanup |
911 |
value= *(int64_t*) value_ptr(session, var_type, base); |
1
by brian
clean slate |
912 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
913 |
return new Item_int(value); |
|
914 |
}
|
|
915 |
case SHOW_DOUBLE: |
|
916 |
{
|
|
917 |
double value; |
|
918 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
919 |
value= *(double*) value_ptr(session, var_type, base); |
1
by brian
clean slate |
920 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
921 |
/* 6, as this is for now only used with microseconds */
|
|
922 |
return new Item_float(value, 6); |
|
923 |
}
|
|
924 |
case SHOW_HA_ROWS: |
|
925 |
{
|
|
926 |
ha_rows value; |
|
927 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
928 |
value= *(ha_rows*) value_ptr(session, var_type, base); |
1
by brian
clean slate |
929 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
151
by Brian Aker
Ulonglong to uint64_t |
930 |
return new Item_int((uint64_t) value); |
1
by brian
clean slate |
931 |
}
|
673.3.17
by Stewart Smith
mostly fix repair test. fix syntax for Drizzle (all tests are MyISAM reliant). |
932 |
case SHOW_SIZE: |
933 |
{
|
|
934 |
size_t value; |
|
935 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
936 |
value= *(size_t*) value_ptr(session, var_type, base); |
|
937 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
|
938 |
return new Item_int((uint64_t) value); |
|
939 |
}
|
|
1
by brian
clean slate |
940 |
case SHOW_MY_BOOL: |
941 |
{
|
|
205
by Brian Aker
uint32 -> uin32_t |
942 |
int32_t value; |
1
by brian
clean slate |
943 |
pthread_mutex_lock(&LOCK_global_system_variables); |
520.1.22
by Brian Aker
Second pass of thd cleanup |
944 |
value= *(bool*) value_ptr(session, var_type, base); |
1
by brian
clean slate |
945 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
946 |
return new Item_int(value,1); |
|
947 |
}
|
|
948 |
case SHOW_CHAR_PTR: |
|
949 |
{
|
|
950 |
Item *tmp; |
|
951 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
952 |
char *str= *(char**) value_ptr(session, var_type, base); |
1
by brian
clean slate |
953 |
if (str) |
954 |
{
|
|
482
by Brian Aker
Remove uint. |
955 |
uint32_t length= strlen(str); |
520.1.22
by Brian Aker
Second pass of thd cleanup |
956 |
tmp= new Item_string(session->strmake(str, length), length, |
1
by brian
clean slate |
957 |
system_charset_info, DERIVATION_SYSCONST); |
958 |
}
|
|
959 |
else
|
|
960 |
{
|
|
961 |
tmp= new Item_null(); |
|
962 |
tmp->collation.set(system_charset_info, DERIVATION_SYSCONST); |
|
963 |
}
|
|
964 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
|
965 |
return tmp; |
|
966 |
}
|
|
967 |
case SHOW_CHAR: |
|
968 |
{
|
|
969 |
Item *tmp; |
|
970 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
971 |
char *str= (char*) value_ptr(session, var_type, base); |
1
by brian
clean slate |
972 |
if (str) |
973 |
tmp= new Item_string(str, strlen(str), |
|
974 |
system_charset_info, DERIVATION_SYSCONST); |
|
975 |
else
|
|
976 |
{
|
|
977 |
tmp= new Item_null(); |
|
978 |
tmp->collation.set(system_charset_info, DERIVATION_SYSCONST); |
|
979 |
}
|
|
980 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
|
981 |
return tmp; |
|
982 |
}
|
|
983 |
default: |
|
1022.2.38
by Monty Taylor
Changed name to std::string. |
984 |
my_error(ER_VAR_CANT_BE_READ, MYF(0), name.c_str()); |
1
by brian
clean slate |
985 |
}
|
986 |
return 0; |
|
987 |
}
|
|
988 |
||
989 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
990 |
bool sys_var_session_enum::update(Session *session, set_var *var) |
1
by brian
clean slate |
991 |
{
|
992 |
if (var->type == OPT_GLOBAL) |
|
576
by Brian Aker
ulong conversion work |
993 |
global_system_variables.*offset= var->save_result.uint32_t_value; |
1
by brian
clean slate |
994 |
else
|
576
by Brian Aker
ulong conversion work |
995 |
session->variables.*offset= var->save_result.uint32_t_value; |
1
by brian
clean slate |
996 |
return 0; |
997 |
}
|
|
998 |
||
999 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
1000 |
void sys_var_session_enum::set_default(Session *session, sql_var_t type) |
1
by brian
clean slate |
1001 |
{
|
1002 |
if (type == OPT_GLOBAL) |
|
621
by Brian Aker
ulong fixes |
1003 |
global_system_variables.*offset= (uint32_t) option_limits->def_value; |
1
by brian
clean slate |
1004 |
else
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1005 |
session->variables.*offset= global_system_variables.*offset; |
1
by brian
clean slate |
1006 |
}
|
1007 |
||
1008 |
||
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
1009 |
unsigned char *sys_var_session_enum::value_ptr(Session *session, |
1273.13.24
by Brian Aker
Updating style, simplified code. |
1010 |
sql_var_t type, |
779.3.10
by Monty Taylor
Turned on -Wshadow. |
1011 |
const LEX_STRING *) |
1
by brian
clean slate |
1012 |
{
|
621
by Brian Aker
ulong fixes |
1013 |
uint32_t tmp= ((type == OPT_GLOBAL) ? |
1
by brian
clean slate |
1014 |
global_system_variables.*offset : |
520.1.22
by Brian Aker
Second pass of thd cleanup |
1015 |
session->variables.*offset); |
481
by Brian Aker
Remove all of uchar. |
1016 |
return (unsigned char*) enum_names->type_names[tmp]; |
1
by brian
clean slate |
1017 |
}
|
1018 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1019 |
bool sys_var_session_bit::check(Session *session, set_var *var) |
1
by brian
clean slate |
1020 |
{
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1021 |
return (check_enum(session, var, &bool_typelib) || |
1022 |
(check_func && (*check_func)(session, var))); |
|
1
by brian
clean slate |
1023 |
}
|
1024 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1025 |
bool sys_var_session_bit::update(Session *session, set_var *var) |
1
by brian
clean slate |
1026 |
{
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1027 |
int res= (*update_func)(session, var); |
1
by brian
clean slate |
1028 |
return res; |
1029 |
}
|
|
1030 |
||
1031 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
1032 |
unsigned char *sys_var_session_bit::value_ptr(Session *session, sql_var_t, |
779.3.10
by Monty Taylor
Turned on -Wshadow. |
1033 |
const LEX_STRING *) |
1
by brian
clean slate |
1034 |
{
|
1035 |
/*
|
|
1036 |
If reverse is 0 (default) return 1 if bit is set.
|
|
1037 |
If reverse is 1, return 0 if bit is set
|
|
1038 |
*/
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1039 |
session->sys_var_tmp.bool_value= ((session->options & bit_flag) ? |
1
by brian
clean slate |
1040 |
!reverse : reverse); |
520.1.22
by Brian Aker
Second pass of thd cleanup |
1041 |
return (unsigned char*) &session->sys_var_tmp.bool_value; |
1
by brian
clean slate |
1042 |
}
|
1043 |
||
1044 |
||
1045 |
typedef struct old_names_map_st |
|
1046 |
{
|
|
1047 |
const char *old_name; |
|
1048 |
const char *new_name; |
|
1049 |
} my_old_conv; |
|
1050 |
||
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
1051 |
bool sys_var_collation::check(Session *, set_var *var) |
1
by brian
clean slate |
1052 |
{
|
264.2.6
by Andrey Hristov
Constify the usage of CHARSET_INFO almost to the last place in the code. |
1053 |
const CHARSET_INFO *tmp; |
1
by brian
clean slate |
1054 |
|
1055 |
if (var->value->result_type() == STRING_RESULT) |
|
1056 |
{
|
|
1057 |
char buff[STRING_BUFFER_USUAL_SIZE]; |
|
1058 |
String str(buff,sizeof(buff), system_charset_info), *res; |
|
1059 |
if (!(res=var->value->val_str(&str))) |
|
1060 |
{
|
|
1022.2.38
by Monty Taylor
Changed name to std::string. |
1061 |
my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), name.c_str(), "NULL"); |
1
by brian
clean slate |
1062 |
return 1; |
1063 |
}
|
|
862
by Brian Aker
Remove charset directory code. |
1064 |
if (!(tmp=get_charset_by_name(res->c_ptr()))) |
1
by brian
clean slate |
1065 |
{
|
1066 |
my_error(ER_UNKNOWN_COLLATION, MYF(0), res->c_ptr()); |
|
1067 |
return 1; |
|
1068 |
}
|
|
1069 |
}
|
|
1070 |
else // INT_RESULT |
|
1071 |
{
|
|
862
by Brian Aker
Remove charset directory code. |
1072 |
if (!(tmp=get_charset((int) var->value->val_int()))) |
1
by brian
clean slate |
1073 |
{
|
1074 |
char buf[20]; |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
1075 |
internal::int10_to_str((int) var->value->val_int(), buf, -10); |
1
by brian
clean slate |
1076 |
my_error(ER_UNKNOWN_COLLATION, MYF(0), buf); |
1077 |
return 1; |
|
1078 |
}
|
|
1079 |
}
|
|
1080 |
var->save_result.charset= tmp; // Save for update |
|
1081 |
return 0; |
|
1082 |
}
|
|
1083 |
||
1084 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1085 |
bool sys_var_collation_sv::update(Session *session, set_var *var) |
1
by brian
clean slate |
1086 |
{
|
1087 |
if (var->type == OPT_GLOBAL) |
|
1088 |
global_system_variables.*offset= var->save_result.charset; |
|
1089 |
else
|
|
1090 |
{
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1091 |
session->variables.*offset= var->save_result.charset; |
1
by brian
clean slate |
1092 |
}
|
1093 |
return 0; |
|
1094 |
}
|
|
1095 |
||
1096 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
1097 |
void sys_var_collation_sv::set_default(Session *session, sql_var_t type) |
1
by brian
clean slate |
1098 |
{
|
1099 |
if (type == OPT_GLOBAL) |
|
1100 |
global_system_variables.*offset= *global_default; |
|
1101 |
else
|
|
1102 |
{
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1103 |
session->variables.*offset= global_system_variables.*offset; |
1
by brian
clean slate |
1104 |
}
|
1105 |
}
|
|
1106 |
||
1107 |
||
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
1108 |
unsigned char *sys_var_collation_sv::value_ptr(Session *session, |
1273.13.24
by Brian Aker
Updating style, simplified code. |
1109 |
sql_var_t type, |
779.3.10
by Monty Taylor
Turned on -Wshadow. |
1110 |
const LEX_STRING *) |
1
by brian
clean slate |
1111 |
{
|
264.2.6
by Andrey Hristov
Constify the usage of CHARSET_INFO almost to the last place in the code. |
1112 |
const CHARSET_INFO *cs= ((type == OPT_GLOBAL) ? |
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
1113 |
global_system_variables.*offset : |
1114 |
session->variables.*offset); |
|
481
by Brian Aker
Remove all of uchar. |
1115 |
return cs ? (unsigned char*) cs->name : (unsigned char*) "NULL"; |
1
by brian
clean slate |
1116 |
}
|
1117 |
||
1118 |
/****************************************************************************/
|
|
1119 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1120 |
bool sys_var_timestamp::update(Session *session, set_var *var) |
1
by brian
clean slate |
1121 |
{
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1122 |
session->set_time((time_t) var->save_result.uint64_t_value); |
1
by brian
clean slate |
1123 |
return 0; |
1124 |
}
|
|
1125 |
||
1126 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
1127 |
void sys_var_timestamp::set_default(Session *session, sql_var_t) |
1
by brian
clean slate |
1128 |
{
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1129 |
session->user_time=0; |
1
by brian
clean slate |
1130 |
}
|
1131 |
||
1132 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
1133 |
unsigned char *sys_var_timestamp::value_ptr(Session *session, sql_var_t, |
779.3.10
by Monty Taylor
Turned on -Wshadow. |
1134 |
const LEX_STRING *) |
1
by brian
clean slate |
1135 |
{
|
1055.2.17
by Jay Pipes
More style cleanups in Session |
1136 |
session->sys_var_tmp.int32_t_value= (int32_t) session->start_time; |
1137 |
return (unsigned char*) &session->sys_var_tmp.int32_t_value; |
|
1
by brian
clean slate |
1138 |
}
|
1139 |
||
1140 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1141 |
bool sys_var_last_insert_id::update(Session *session, set_var *var) |
1
by brian
clean slate |
1142 |
{
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1143 |
session->first_successful_insert_id_in_prev_stmt= |
151
by Brian Aker
Ulonglong to uint64_t |
1144 |
var->save_result.uint64_t_value; |
1
by brian
clean slate |
1145 |
return 0; |
1146 |
}
|
|
1147 |
||
1148 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1149 |
unsigned char *sys_var_last_insert_id::value_ptr(Session *session, |
1273.13.24
by Brian Aker
Updating style, simplified code. |
1150 |
sql_var_t, |
779.3.10
by Monty Taylor
Turned on -Wshadow. |
1151 |
const LEX_STRING *) |
1
by brian
clean slate |
1152 |
{
|
1153 |
/*
|
|
77.1.45
by Monty Taylor
Warning fixes. |
1154 |
this tmp var makes it robust againt change of type of
|
1
by brian
clean slate |
1155 |
read_first_successful_insert_id_in_prev_stmt().
|
1156 |
*/
|
|
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
1157 |
session->sys_var_tmp.uint64_t_value= |
520.1.22
by Brian Aker
Second pass of thd cleanup |
1158 |
session->read_first_successful_insert_id_in_prev_stmt(); |
1159 |
return (unsigned char*) &session->sys_var_tmp.uint64_t_value; |
|
1
by brian
clean slate |
1160 |
}
|
1161 |
||
1162 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1163 |
bool sys_var_session_time_zone::check(Session *session, set_var *var) |
1
by brian
clean slate |
1164 |
{
|
1165 |
char buff[MAX_TIME_ZONE_NAME_LENGTH]; |
|
383.1.12
by Brian Aker
Much closer toward UTF8 being around all the time... |
1166 |
String str(buff, sizeof(buff), &my_charset_utf8_general_ci); |
1
by brian
clean slate |
1167 |
String *res= var->value->val_str(&str); |
1168 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1169 |
if (!(var->save_result.time_zone= my_tz_find(session, res))) |
1
by brian
clean slate |
1170 |
{
|
1171 |
my_error(ER_UNKNOWN_TIME_ZONE, MYF(0), res ? res->c_ptr() : "NULL"); |
|
1172 |
return 1; |
|
1173 |
}
|
|
1174 |
return 0; |
|
1175 |
}
|
|
1176 |
||
1177 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1178 |
bool sys_var_session_time_zone::update(Session *session, set_var *var) |
1
by brian
clean slate |
1179 |
{
|
1180 |
/* We are using Time_zone object found during check() phase. */
|
|
1181 |
if (var->type == OPT_GLOBAL) |
|
1182 |
{
|
|
1183 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
1184 |
global_system_variables.time_zone= var->save_result.time_zone; |
|
1185 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
|
1186 |
}
|
|
1187 |
else
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1188 |
session->variables.time_zone= var->save_result.time_zone; |
1
by brian
clean slate |
1189 |
return 0; |
1190 |
}
|
|
1191 |
||
1192 |
||
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
1193 |
unsigned char *sys_var_session_time_zone::value_ptr(Session *session, |
1273.13.24
by Brian Aker
Updating style, simplified code. |
1194 |
sql_var_t type, |
779.3.10
by Monty Taylor
Turned on -Wshadow. |
1195 |
const LEX_STRING *) |
1
by brian
clean slate |
1196 |
{
|
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
1197 |
/*
|
1
by brian
clean slate |
1198 |
We can use ptr() instead of c_ptr() here because String contaning
|
1199 |
time zone name is guaranteed to be zero ended.
|
|
1200 |
*/
|
|
1201 |
if (type == OPT_GLOBAL) |
|
481
by Brian Aker
Remove all of uchar. |
1202 |
return (unsigned char *)(global_system_variables.time_zone->get_name()->ptr()); |
1
by brian
clean slate |
1203 |
else
|
1204 |
{
|
|
1205 |
/*
|
|
1206 |
This is an ugly fix for replication: we don't replicate properly queries
|
|
1207 |
invoking system variables' values to update tables; but
|
|
1208 |
CONVERT_TZ(,,@@session.time_zone) is so popular that we make it
|
|
1209 |
replicable (i.e. we tell the binlog code to store the session
|
|
1210 |
timezone). If it's the global value which was used we can't replicate
|
|
1211 |
(binlog code stores session value only).
|
|
1212 |
*/
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1213 |
return (unsigned char *)(session->variables.time_zone->get_name()->ptr()); |
1
by brian
clean slate |
1214 |
}
|
1215 |
}
|
|
1216 |
||
1217 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
1218 |
void sys_var_session_time_zone::set_default(Session *session, sql_var_t type) |
1
by brian
clean slate |
1219 |
{
|
1220 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
1221 |
if (type == OPT_GLOBAL) |
|
1222 |
{
|
|
1223 |
if (default_tz_name) |
|
1224 |
{
|
|
383.1.12
by Brian Aker
Much closer toward UTF8 being around all the time... |
1225 |
String str(default_tz_name, &my_charset_utf8_general_ci); |
1
by brian
clean slate |
1226 |
/*
|
1227 |
We are guaranteed to find this time zone since its existence
|
|
1228 |
is checked during start-up.
|
|
1229 |
*/
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1230 |
global_system_variables.time_zone= my_tz_find(session, &str); |
1
by brian
clean slate |
1231 |
}
|
1232 |
else
|
|
1233 |
global_system_variables.time_zone= my_tz_SYSTEM; |
|
1234 |
}
|
|
1235 |
else
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1236 |
session->variables.time_zone= global_system_variables.time_zone; |
1
by brian
clean slate |
1237 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
1238 |
}
|
|
1239 |
||
1240 |
||
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
1241 |
bool sys_var_session_lc_time_names::check(Session *, set_var *var) |
1
by brian
clean slate |
1242 |
{
|
1243 |
MY_LOCALE *locale_match; |
|
1244 |
||
1245 |
if (var->value->result_type() == INT_RESULT) |
|
1246 |
{
|
|
895
by Brian Aker
Completion (?) of uint conversion. |
1247 |
if (!(locale_match= my_locale_by_number((uint32_t) var->value->val_int()))) |
1
by brian
clean slate |
1248 |
{
|
1249 |
char buf[20]; |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
1250 |
internal::int10_to_str((int) var->value->val_int(), buf, -10); |
1
by brian
clean slate |
1251 |
my_printf_error(ER_UNKNOWN_ERROR, "Unknown locale: '%s'", MYF(0), buf); |
1252 |
return 1; |
|
1253 |
}
|
|
1254 |
}
|
|
1255 |
else // STRING_RESULT |
|
1256 |
{
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
1257 |
char buff[6]; |
383.1.12
by Brian Aker
Much closer toward UTF8 being around all the time... |
1258 |
String str(buff, sizeof(buff), &my_charset_utf8_general_ci), *res; |
1
by brian
clean slate |
1259 |
if (!(res=var->value->val_str(&str))) |
1260 |
{
|
|
1022.2.38
by Monty Taylor
Changed name to std::string. |
1261 |
my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), name.c_str(), "NULL"); |
1
by brian
clean slate |
1262 |
return 1; |
1263 |
}
|
|
1264 |
const char *locale_str= res->c_ptr(); |
|
1265 |
if (!(locale_match= my_locale_by_name(locale_str))) |
|
1266 |
{
|
|
1267 |
my_printf_error(ER_UNKNOWN_ERROR, |
|
1268 |
"Unknown locale: '%s'", MYF(0), locale_str); |
|
1269 |
return 1; |
|
1270 |
}
|
|
1271 |
}
|
|
1272 |
||
1273 |
var->save_result.locale_value= locale_match; |
|
1274 |
return 0; |
|
1275 |
}
|
|
1276 |
||
1277 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1278 |
bool sys_var_session_lc_time_names::update(Session *session, set_var *var) |
1
by brian
clean slate |
1279 |
{
|
1280 |
if (var->type == OPT_GLOBAL) |
|
1281 |
global_system_variables.lc_time_names= var->save_result.locale_value; |
|
1282 |
else
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1283 |
session->variables.lc_time_names= var->save_result.locale_value; |
1
by brian
clean slate |
1284 |
return 0; |
1285 |
}
|
|
1286 |
||
1287 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1288 |
unsigned char *sys_var_session_lc_time_names::value_ptr(Session *session, |
1273.13.24
by Brian Aker
Updating style, simplified code. |
1289 |
sql_var_t type, |
779.3.10
by Monty Taylor
Turned on -Wshadow. |
1290 |
const LEX_STRING *) |
1
by brian
clean slate |
1291 |
{
|
1292 |
return type == OPT_GLOBAL ? |
|
481
by Brian Aker
Remove all of uchar. |
1293 |
(unsigned char *) global_system_variables.lc_time_names->name : |
520.1.22
by Brian Aker
Second pass of thd cleanup |
1294 |
(unsigned char *) session->variables.lc_time_names->name; |
1
by brian
clean slate |
1295 |
}
|
1296 |
||
1297 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
1298 |
void sys_var_session_lc_time_names::set_default(Session *session, sql_var_t type) |
1
by brian
clean slate |
1299 |
{
|
1300 |
if (type == OPT_GLOBAL) |
|
1301 |
global_system_variables.lc_time_names= my_default_lc_time_names; |
|
1302 |
else
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1303 |
session->variables.lc_time_names= global_system_variables.lc_time_names; |
1
by brian
clean slate |
1304 |
}
|
1305 |
||
1306 |
/*
|
|
1307 |
Handling of microseoncds given as seconds.part_seconds
|
|
1308 |
||
1309 |
NOTES
|
|
1310 |
The argument to long query time is in seconds in decimal
|
|
151
by Brian Aker
Ulonglong to uint64_t |
1311 |
which is converted to uint64_t integer holding microseconds for storage.
|
1
by brian
clean slate |
1312 |
This is used for handling long_query_time
|
1313 |
*/
|
|
1314 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1315 |
bool sys_var_microseconds::update(Session *session, set_var *var) |
1
by brian
clean slate |
1316 |
{
|
1317 |
double num= var->value->val_real(); |
|
152
by Brian Aker
longlong replacement |
1318 |
int64_t microseconds; |
1
by brian
clean slate |
1319 |
if (num > (double) option_limits->max_value) |
1320 |
num= (double) option_limits->max_value; |
|
1321 |
if (num < (double) option_limits->min_value) |
|
1322 |
num= (double) option_limits->min_value; |
|
152
by Brian Aker
longlong replacement |
1323 |
microseconds= (int64_t) (num * 1000000.0 + 0.5); |
1
by brian
clean slate |
1324 |
if (var->type == OPT_GLOBAL) |
1325 |
{
|
|
1326 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
1327 |
(global_system_variables.*offset)= microseconds; |
|
1328 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
|
1329 |
}
|
|
1330 |
else
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1331 |
session->variables.*offset= microseconds; |
1
by brian
clean slate |
1332 |
return 0; |
1333 |
}
|
|
1334 |
||
1335 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
1336 |
void sys_var_microseconds::set_default(Session *session, sql_var_t type) |
1
by brian
clean slate |
1337 |
{
|
152
by Brian Aker
longlong replacement |
1338 |
int64_t microseconds= (int64_t) (option_limits->def_value * 1000000.0); |
1
by brian
clean slate |
1339 |
if (type == OPT_GLOBAL) |
1340 |
{
|
|
1341 |
pthread_mutex_lock(&LOCK_global_system_variables); |
|
1342 |
global_system_variables.*offset= microseconds; |
|
1343 |
pthread_mutex_unlock(&LOCK_global_system_variables); |
|
1344 |
}
|
|
1345 |
else
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1346 |
session->variables.*offset= microseconds; |
1
by brian
clean slate |
1347 |
}
|
1348 |
||
1349 |
/*
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1350 |
Functions to update session->options bits
|
1
by brian
clean slate |
1351 |
*/
|
1352 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1353 |
static bool set_option_bit(Session *session, set_var *var) |
1
by brian
clean slate |
1354 |
{
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1355 |
sys_var_session_bit *sys_var= ((sys_var_session_bit*) var->var); |
576
by Brian Aker
ulong conversion work |
1356 |
if ((var->save_result.uint32_t_value != 0) == sys_var->reverse) |
520.1.22
by Brian Aker
Second pass of thd cleanup |
1357 |
session->options&= ~sys_var->bit_flag; |
1
by brian
clean slate |
1358 |
else
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1359 |
session->options|= sys_var->bit_flag; |
1
by brian
clean slate |
1360 |
return 0; |
1361 |
}
|
|
1362 |
||
1363 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1364 |
static bool set_option_autocommit(Session *session, set_var *var) |
1
by brian
clean slate |
1365 |
{
|
1366 |
/* The test is negative as the flag we use is NOT autocommit */
|
|
1367 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1368 |
uint64_t org_options= session->options; |
1
by brian
clean slate |
1369 |
|
576
by Brian Aker
ulong conversion work |
1370 |
if (var->save_result.uint32_t_value != 0) |
520.1.22
by Brian Aker
Second pass of thd cleanup |
1371 |
session->options&= ~((sys_var_session_bit*) var->var)->bit_flag; |
1
by brian
clean slate |
1372 |
else
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1373 |
session->options|= ((sys_var_session_bit*) var->var)->bit_flag; |
1
by brian
clean slate |
1374 |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1375 |
if ((org_options ^ session->options) & OPTION_NOT_AUTOCOMMIT) |
1
by brian
clean slate |
1376 |
{
|
1377 |
if ((org_options & OPTION_NOT_AUTOCOMMIT)) |
|
1378 |
{
|
|
1379 |
/* We changed to auto_commit mode */
|
|
1172.1.2
by Brian Aker
Remove worthless call (ok... for not current replication system). |
1380 |
session->options&= ~(uint64_t) (OPTION_BEGIN); |
520.1.22
by Brian Aker
Second pass of thd cleanup |
1381 |
session->server_status|= SERVER_STATUS_AUTOCOMMIT; |
1273.1.2
by Jay Pipes
This patch does not change any algorithms or code paths, |
1382 |
TransactionServices &transaction_services= TransactionServices::singleton(); |
1405.3.5
by Jay Pipes
TransactionServices method names now meet code style guidelines. |
1383 |
if (transaction_services.commitTransaction(session, true)) |
1273.1.2
by Jay Pipes
This patch does not change any algorithms or code paths, |
1384 |
return 1; |
1
by brian
clean slate |
1385 |
}
|
1386 |
else
|
|
1387 |
{
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1388 |
session->server_status&= ~SERVER_STATUS_AUTOCOMMIT; |
1
by brian
clean slate |
1389 |
}
|
1390 |
}
|
|
1391 |
return 0; |
|
1392 |
}
|
|
1393 |
||
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
1394 |
static int check_pseudo_thread_id(Session *, set_var *var) |
1
by brian
clean slate |
1395 |
{
|
151
by Brian Aker
Ulonglong to uint64_t |
1396 |
var->save_result.uint64_t_value= var->value->val_int(); |
1
by brian
clean slate |
1397 |
return 0; |
1398 |
}
|
|
1399 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1400 |
static unsigned char *get_warning_count(Session *session) |
1
by brian
clean slate |
1401 |
{
|
937.2.3
by Stewart Smith
yet another 4/8byte long issue with variables. Fix up warning and error count to use uint32_t instead. |
1402 |
session->sys_var_tmp.uint32_t_value= |
626
by Brian Aker
More of the same (ulong/64) |
1403 |
(session->warn_count[(uint32_t) DRIZZLE_ERROR::WARN_LEVEL_NOTE] + |
1404 |
session->warn_count[(uint32_t) DRIZZLE_ERROR::WARN_LEVEL_ERROR] + |
|
1405 |
session->warn_count[(uint32_t) DRIZZLE_ERROR::WARN_LEVEL_WARN]); |
|
937.2.3
by Stewart Smith
yet another 4/8byte long issue with variables. Fix up warning and error count to use uint32_t instead. |
1406 |
return (unsigned char*) &session->sys_var_tmp.uint32_t_value; |
1
by brian
clean slate |
1407 |
}
|
1408 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1409 |
static unsigned char *get_error_count(Session *session) |
1
by brian
clean slate |
1410 |
{
|
937.2.3
by Stewart Smith
yet another 4/8byte long issue with variables. Fix up warning and error count to use uint32_t instead. |
1411 |
session->sys_var_tmp.uint32_t_value= |
626
by Brian Aker
More of the same (ulong/64) |
1412 |
session->warn_count[(uint32_t) DRIZZLE_ERROR::WARN_LEVEL_ERROR]; |
937.2.3
by Stewart Smith
yet another 4/8byte long issue with variables. Fix up warning and error count to use uint32_t instead. |
1413 |
return (unsigned char*) &session->sys_var_tmp.uint32_t_value; |
1
by brian
clean slate |
1414 |
}
|
1415 |
||
1416 |
||
1417 |
/**
|
|
1418 |
Get the tmpdir that was specified or chosen by default.
|
|
1419 |
||
1420 |
This is necessary because if the user does not specify a temporary
|
|
1421 |
directory via the command line, one is chosen based on the environment
|
|
575.4.3
by ysano
Rename mysql to drizzle. |
1422 |
or system defaults. But we can't just always use drizzle_tmpdir, because
|
1
by brian
clean slate |
1423 |
that is actually a call to my_tmpdir() which cycles among possible
|
1424 |
temporary directories.
|
|
1425 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1426 |
@param session thread handle
|
1
by brian
clean slate |
1427 |
|
1428 |
@retval
|
|
1429 |
ptr pointer to NUL-terminated string
|
|
1430 |
*/
|
|
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
1431 |
static unsigned char *get_tmpdir(Session *) |
1
by brian
clean slate |
1432 |
{
|
680
by Brian Aker
Remove locks around temp tables for searching tmp directory path. |
1433 |
assert(drizzle_tmpdir); |
575.4.3
by ysano
Rename mysql to drizzle. |
1434 |
return (unsigned char*)drizzle_tmpdir; |
1
by brian
clean slate |
1435 |
}
|
1436 |
||
1437 |
/****************************************************************************
|
|
1438 |
Main handling of variables:
|
|
1439 |
- Initialisation
|
|
1440 |
- Searching during parsing
|
|
1441 |
- Update loop
|
|
1442 |
****************************************************************************/
|
|
1443 |
||
1444 |
/**
|
|
1445 |
Find variable name in option my_getopt structure used for
|
|
1446 |
command line args.
|
|
1447 |
||
1448 |
@param opt option structure array to search in
|
|
1449 |
@param name variable name
|
|
1450 |
||
1451 |
@retval
|
|
1452 |
0 Error
|
|
1453 |
@retval
|
|
1454 |
ptr pointer to option structure
|
|
1455 |
*/
|
|
1456 |
||
1410.3.4
by Djellel E. Difallah
update references to old my_'s |
1457 |
static struct option *find_option(struct option *opt, const char *name) |
1
by brian
clean slate |
1458 |
{
|
482
by Brian Aker
Remove uint. |
1459 |
uint32_t length=strlen(name); |
1
by brian
clean slate |
1460 |
for (; opt->name; opt++) |
1461 |
{
|
|
1462 |
if (!getopt_compare_strings(opt->name, name, length) && |
|
1463 |
!opt->name[length]) |
|
1464 |
{
|
|
1465 |
/*
|
|
1466 |
Only accept the option if one can set values through it.
|
|
1467 |
If not, there is no default value or limits in the option.
|
|
1468 |
*/
|
|
1469 |
return (opt->value) ? opt : 0; |
|
1470 |
}
|
|
1471 |
}
|
|
1472 |
return 0; |
|
1473 |
}
|
|
1474 |
||
1475 |
||
1476 |
/*
|
|
1477 |
Add variables to the dynamic hash of system variables
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
1478 |
|
1
by brian
clean slate |
1479 |
SYNOPSIS
|
1480 |
mysql_add_sys_var_chain()
|
|
1481 |
first Pointer to first system variable to add
|
|
1482 |
long_opt (optional)command line arguments may be tied for limit checks.
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
1483 |
|
1
by brian
clean slate |
1484 |
RETURN VALUES
|
1485 |
0 SUCCESS
|
|
1486 |
otherwise FAILURE
|
|
1487 |
*/
|
|
1488 |
||
1489 |
||
1410.3.4
by Djellel E. Difallah
update references to old my_'s |
1490 |
int mysql_add_sys_var_chain(sys_var *first, struct option *long_options) |
1
by brian
clean slate |
1491 |
{
|
1492 |
sys_var *var; |
|
1493 |
/* A write lock should be held on LOCK_system_variables_hash */
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
1494 |
|
1055.2.20
by Jay Pipes
Refactors sys_var class -- doxygenates and documents the class members and functions. Protects all member variables and adds public getters/setters. |
1495 |
for (var= first; var; var= var->getNext()) |
1
by brian
clean slate |
1496 |
{
|
873.2.16
by Monty Taylor
Replaced HASH with std::map - avoid utf8 hashing on every sys_var lookup. |
1497 |
|
1228.3.1
by Monty Taylor
Removed NameMap. Also remove the aliases from the plugin, since we can just |
1498 |
string lower_name(var->getName()); |
1499 |
transform(lower_name.begin(), lower_name.end(), |
|
1500 |
lower_name.begin(), ::tolower); |
|
1501 |
||
873.2.16
by Monty Taylor
Replaced HASH with std::map - avoid utf8 hashing on every sys_var lookup. |
1502 |
/* this fails if there is a conflicting variable name. */
|
1228.3.1
by Monty Taylor
Removed NameMap. Also remove the aliases from the plugin, since we can just |
1503 |
if (system_variable_map.find(lower_name) != system_variable_map.end()) |
873.2.16
by Monty Taylor
Replaced HASH with std::map - avoid utf8 hashing on every sys_var lookup. |
1504 |
{
|
1228.3.1
by Monty Taylor
Removed NameMap. Also remove the aliases from the plugin, since we can just |
1505 |
errmsg_printf(ERRMSG_LVL_ERROR, _("Variable named %s already exists!\n"), |
1506 |
var->getName().c_str()); |
|
1022.2.37
by Monty Taylor
Moved more tolower calls to setup rather than during runtime. |
1507 |
return 1; |
873.2.16
by Monty Taylor
Replaced HASH with std::map - avoid utf8 hashing on every sys_var lookup. |
1508 |
}
|
1228.3.1
by Monty Taylor
Removed NameMap. Also remove the aliases from the plugin, since we can just |
1509 |
|
1510 |
pair<SystemVariableMap::iterator, bool> ret= |
|
1511 |
system_variable_map.insert(make_pair(lower_name, var)); |
|
1512 |
if (ret.second == false) |
|
1513 |
{
|
|
1514 |
errmsg_printf(ERRMSG_LVL_ERROR, _("Could not add Variable: %s\n"), |
|
1515 |
var->getName().c_str()); |
|
1516 |
return 1; |
|
1517 |
}
|
|
1518 |
||
1
by brian
clean slate |
1519 |
if (long_options) |
1055.2.20
by Jay Pipes
Refactors sys_var class -- doxygenates and documents the class members and functions. Protects all member variables and adds public getters/setters. |
1520 |
var->setOptionLimits(find_option(long_options, var->getName().c_str())); |
1
by brian
clean slate |
1521 |
}
|
1522 |
return 0; |
|
1523 |
||
1524 |
}
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
1525 |
|
1526 |
||
1
by brian
clean slate |
1527 |
/*
|
1528 |
Remove variables to the dynamic hash of system variables
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
1529 |
|
1
by brian
clean slate |
1530 |
SYNOPSIS
|
1531 |
mysql_del_sys_var_chain()
|
|
1532 |
first Pointer to first system variable to remove
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
1533 |
|
1
by brian
clean slate |
1534 |
RETURN VALUES
|
1535 |
0 SUCCESS
|
|
1536 |
otherwise FAILURE
|
|
1537 |
*/
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
1538 |
|
1
by brian
clean slate |
1539 |
int mysql_del_sys_var_chain(sys_var *first) |
1540 |
{
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
1541 |
|
1
by brian
clean slate |
1542 |
/* A write lock should be held on LOCK_system_variables_hash */
|
1055.2.20
by Jay Pipes
Refactors sys_var class -- doxygenates and documents the class members and functions. Protects all member variables and adds public getters/setters. |
1543 |
for (sys_var *var= first; var; var= var->getNext()) |
873.2.16
by Monty Taylor
Replaced HASH with std::map - avoid utf8 hashing on every sys_var lookup. |
1544 |
{
|
1228.3.1
by Monty Taylor
Removed NameMap. Also remove the aliases from the plugin, since we can just |
1545 |
string lower_name(var->getName()); |
1546 |
transform(lower_name.begin(), lower_name.end(), |
|
1547 |
lower_name.begin(), ::tolower); |
|
1548 |
system_variable_map.erase(lower_name); |
|
873.2.16
by Monty Taylor
Replaced HASH with std::map - avoid utf8 hashing on every sys_var lookup. |
1549 |
}
|
1228.3.1
by Monty Taylor
Removed NameMap. Also remove the aliases from the plugin, since we can just |
1550 |
return 0; |
1
by brian
clean slate |
1551 |
}
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
1552 |
|
1553 |
||
1554 |
||
1
by brian
clean slate |
1555 |
/*
|
1556 |
Constructs an array of system variables for display to the user.
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
1557 |
|
1
by brian
clean slate |
1558 |
SYNOPSIS
|
1559 |
enumerate_sys_vars()
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1560 |
session current thread
|
1
by brian
clean slate |
1561 |
sorted If TRUE, the system variables should be sorted
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
1562 |
|
1
by brian
clean slate |
1563 |
RETURN VALUES
|
1273.13.73
by Brian Aker
Remove typedef and drop some dead code. |
1564 |
pointer Array of drizzle_show_var elements for display
|
1
by brian
clean slate |
1565 |
NULL FAILURE
|
1566 |
*/
|
|
1567 |
||
1273.13.73
by Brian Aker
Remove typedef and drop some dead code. |
1568 |
drizzle_show_var* enumerate_sys_vars(Session *session, bool) |
1
by brian
clean slate |
1569 |
{
|
1570 |
int fixed_count= fixed_show_vars.elements; |
|
1273.13.73
by Brian Aker
Remove typedef and drop some dead code. |
1571 |
int size= sizeof(drizzle_show_var) * (system_variable_map.size() + fixed_count + 1); |
1572 |
drizzle_show_var *result= (drizzle_show_var*) session->alloc(size); |
|
1
by brian
clean slate |
1573 |
|
1574 |
if (result) |
|
1575 |
{
|
|
1273.13.73
by Brian Aker
Remove typedef and drop some dead code. |
1576 |
drizzle_show_var *show= result + fixed_count; |
1577 |
memcpy(result, fixed_show_vars.buffer, fixed_count * sizeof(drizzle_show_var)); |
|
1
by brian
clean slate |
1578 |
|
1228.3.1
by Monty Taylor
Removed NameMap. Also remove the aliases from the plugin, since we can just |
1579 |
SystemVariableMap::const_iterator iter= system_variable_map.begin(); |
1580 |
while (iter != system_variable_map.end()) |
|
1
by brian
clean slate |
1581 |
{
|
1228.3.1
by Monty Taylor
Removed NameMap. Also remove the aliases from the plugin, since we can just |
1582 |
sys_var *var= (*iter).second; |
1055.2.20
by Jay Pipes
Refactors sys_var class -- doxygenates and documents the class members and functions. Protects all member variables and adds public getters/setters. |
1583 |
show->name= var->getName().c_str(); |
1
by brian
clean slate |
1584 |
show->value= (char*) var; |
1585 |
show->type= SHOW_SYS; |
|
1586 |
show++; |
|
1228.3.1
by Monty Taylor
Removed NameMap. Also remove the aliases from the plugin, since we can just |
1587 |
++iter; |
1
by brian
clean slate |
1588 |
}
|
1589 |
||
1590 |
/* make last element empty */
|
|
1273.13.73
by Brian Aker
Remove typedef and drop some dead code. |
1591 |
memset(show, 0, sizeof(drizzle_show_var)); |
1
by brian
clean slate |
1592 |
}
|
1593 |
return result; |
|
1594 |
}
|
|
1595 |
||
1596 |
||
1597 |
/*
|
|
1598 |
Initialize the system variables
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
1599 |
|
1
by brian
clean slate |
1600 |
SYNOPSIS
|
1601 |
set_var_init()
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
1602 |
|
1
by brian
clean slate |
1603 |
RETURN VALUES
|
1604 |
0 SUCCESS
|
|
1605 |
otherwise FAILURE
|
|
1606 |
*/
|
|
1607 |
||
1608 |
int set_var_init() |
|
1609 |
{
|
|
482
by Brian Aker
Remove uint. |
1610 |
uint32_t count= 0; |
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
1611 |
|
1055.2.20
by Jay Pipes
Refactors sys_var class -- doxygenates and documents the class members and functions. Protects all member variables and adds public getters/setters. |
1612 |
for (sys_var *var= vars.first; var; var= var->getNext(), count++) {}; |
1
by brian
clean slate |
1613 |
|
1273.13.73
by Brian Aker
Remove typedef and drop some dead code. |
1614 |
if (my_init_dynamic_array(&fixed_show_vars, sizeof(drizzle_show_var), |
1
by brian
clean slate |
1615 |
FIXED_VARS_SIZE + 64, 64)) |
1616 |
goto error; |
|
1617 |
||
1618 |
fixed_show_vars.elements= FIXED_VARS_SIZE; |
|
1619 |
memcpy(fixed_show_vars.buffer, fixed_vars, sizeof(fixed_vars)); |
|
1620 |
||
1055.2.20
by Jay Pipes
Refactors sys_var class -- doxygenates and documents the class members and functions. Protects all member variables and adds public getters/setters. |
1621 |
vars.last->setNext(NULL); |
1
by brian
clean slate |
1622 |
if (mysql_add_sys_var_chain(vars.first, my_long_options)) |
1623 |
goto error; |
|
1624 |
||
51.1.46
by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE |
1625 |
return(0); |
1
by brian
clean slate |
1626 |
|
1627 |
error: |
|
1628 |
fprintf(stderr, "failed to initialize system variables"); |
|
51.1.46
by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE |
1629 |
return(1); |
1
by brian
clean slate |
1630 |
}
|
1631 |
||
1632 |
||
1633 |
void set_var_free() |
|
1634 |
{
|
|
1635 |
delete_dynamic(&fixed_show_vars); |
|
1636 |
}
|
|
1637 |
||
1638 |
||
1639 |
/**
|
|
1640 |
Find a user set-table variable.
|
|
1641 |
||
1642 |
@param str Name of system variable to find
|
|
1643 |
@param length Length of variable. zero means that we should use strlen()
|
|
1644 |
on the variable
|
|
1645 |
@param no_error Refuse to emit an error, even if one occurred.
|
|
1646 |
||
1647 |
@retval
|
|
1648 |
pointer pointer to variable definitions
|
|
1649 |
@retval
|
|
1650 |
0 Unknown variable (error message is given)
|
|
1651 |
*/
|
|
1652 |
||
873.2.16
by Monty Taylor
Replaced HASH with std::map - avoid utf8 hashing on every sys_var lookup. |
1653 |
sys_var *intern_find_sys_var(const char *str, uint32_t, bool no_error) |
1
by brian
clean slate |
1654 |
{
|
1228.3.1
by Monty Taylor
Removed NameMap. Also remove the aliases from the plugin, since we can just |
1655 |
string lower_name(str); |
1656 |
transform(lower_name.begin(), lower_name.end(), |
|
1657 |
lower_name.begin(), ::tolower); |
|
1658 |
||
1659 |
sys_var *result= NULL; |
|
1660 |
||
1661 |
SystemVariableMap::iterator iter= system_variable_map.find(lower_name); |
|
1662 |
if (iter != system_variable_map.end()) |
|
1663 |
{
|
|
1664 |
result= (*iter).second; |
|
1665 |
}
|
|
1666 |
||
1
by brian
clean slate |
1667 |
/*
|
1668 |
This function is only called from the sql_plugin.cc.
|
|
1669 |
A lock on LOCK_system_variable_hash should be held
|
|
1670 |
*/
|
|
1022.2.37
by Monty Taylor
Moved more tolower calls to setup rather than during runtime. |
1671 |
if (result == NULL) |
896.1.1
by Monty Taylor
Actually return NULL from intern_find_sys_var on error thank you. |
1672 |
{
|
1673 |
if (no_error) |
|
1674 |
{
|
|
1675 |
return NULL; |
|
1676 |
}
|
|
1677 |
else
|
|
1678 |
{
|
|
1679 |
my_error(ER_UNKNOWN_SYSTEM_VARIABLE, MYF(0), (char*) str); |
|
1680 |
return NULL; |
|
1681 |
}
|
|
1682 |
}
|
|
1
by brian
clean slate |
1683 |
|
1022.2.37
by Monty Taylor
Moved more tolower calls to setup rather than during runtime. |
1684 |
return result; |
1
by brian
clean slate |
1685 |
}
|
1686 |
||
1687 |
||
1688 |
/**
|
|
1689 |
Execute update of all variables.
|
|
1690 |
||
1691 |
First run a check of all variables that all updates will go ok.
|
|
1692 |
If yes, then execute all updates, returning an error if any one failed.
|
|
1693 |
||
1694 |
This should ensure that in all normal cases none all or variables are
|
|
1695 |
updated.
|
|
1696 |
||
520.1.21
by Brian Aker
THD -> Session rename |
1697 |
@param Session Thread id
|
1
by brian
clean slate |
1698 |
@param var_list List of variables to update
|
1699 |
||
1700 |
@retval
|
|
1701 |
0 ok
|
|
1702 |
@retval
|
|
1703 |
1 ERROR, message sent (normally no variables was updated)
|
|
1704 |
@retval
|
|
1705 |
-1 ERROR, message not sent
|
|
1706 |
*/
|
|
1707 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1708 |
int sql_set_variables(Session *session, List<set_var_base> *var_list) |
1
by brian
clean slate |
1709 |
{
|
1710 |
int error; |
|
1711 |
List_iterator_fast<set_var_base> it(*var_list); |
|
1712 |
||
1713 |
set_var_base *var; |
|
1714 |
while ((var=it++)) |
|
1715 |
{
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1716 |
if ((error= var->check(session))) |
1
by brian
clean slate |
1717 |
goto err; |
1718 |
}
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1719 |
if (!(error= test(session->is_error()))) |
1
by brian
clean slate |
1720 |
{
|
1721 |
it.rewind(); |
|
1722 |
while ((var= it++)) |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1723 |
error|= var->update(session); // Returns 0, -1 or 1 |
1
by brian
clean slate |
1724 |
}
|
1725 |
||
1726 |
err: |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1727 |
free_underlaid_joins(session, &session->lex->select_lex); |
51.1.46
by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE |
1728 |
return(error); |
1
by brian
clean slate |
1729 |
}
|
1730 |
||
1731 |
||
1732 |
/*****************************************************************************
|
|
1733 |
Functions to handle SET mysql_internal_variable=const_expr
|
|
1734 |
*****************************************************************************/
|
|
1735 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1736 |
int set_var::check(Session *session) |
1
by brian
clean slate |
1737 |
{
|
1738 |
if (var->is_readonly()) |
|
1739 |
{
|
|
1055.2.20
by Jay Pipes
Refactors sys_var class -- doxygenates and documents the class members and functions. Protects all member variables and adds public getters/setters. |
1740 |
my_error(ER_INCORRECT_GLOBAL_LOCAL_VAR, MYF(0), var->getName().c_str(), "read only"); |
1
by brian
clean slate |
1741 |
return -1; |
1742 |
}
|
|
1743 |
if (var->check_type(type)) |
|
1744 |
{
|
|
1745 |
int err= type == OPT_GLOBAL ? ER_LOCAL_VARIABLE : ER_GLOBAL_VARIABLE; |
|
1055.2.20
by Jay Pipes
Refactors sys_var class -- doxygenates and documents the class members and functions. Protects all member variables and adds public getters/setters. |
1746 |
my_error(err, MYF(0), var->getName().c_str()); |
1
by brian
clean slate |
1747 |
return -1; |
1748 |
}
|
|
1749 |
/* value is a NULL pointer if we are using SET ... = DEFAULT */
|
|
1750 |
if (!value) |
|
1751 |
{
|
|
1752 |
if (var->check_default(type)) |
|
1753 |
{
|
|
1055.2.20
by Jay Pipes
Refactors sys_var class -- doxygenates and documents the class members and functions. Protects all member variables and adds public getters/setters. |
1754 |
my_error(ER_NO_DEFAULT, MYF(0), var->getName().c_str()); |
1
by brian
clean slate |
1755 |
return -1; |
1756 |
}
|
|
1757 |
return 0; |
|
1758 |
}
|
|
1759 |
||
1760 |
if ((!value->fixed && |
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1761 |
value->fix_fields(session, &value)) || value->check_cols(1)) |
1
by brian
clean slate |
1762 |
return -1; |
1763 |
if (var->check_update_type(value->result_type())) |
|
1764 |
{
|
|
1055.2.20
by Jay Pipes
Refactors sys_var class -- doxygenates and documents the class members and functions. Protects all member variables and adds public getters/setters. |
1765 |
my_error(ER_WRONG_TYPE_FOR_VAR, MYF(0), var->getName().c_str()); |
1
by brian
clean slate |
1766 |
return -1; |
1767 |
}
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1768 |
return var->check(session, this) ? -1 : 0; |
1
by brian
clean slate |
1769 |
}
|
1770 |
||
1771 |
/**
|
|
1772 |
Update variable
|
|
1773 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1774 |
@param session thread handler
|
1
by brian
clean slate |
1775 |
@returns 0|1 ok or ERROR
|
1776 |
||
1777 |
@note ERROR can be only due to abnormal operations involving
|
|
1778 |
the server's execution evironment such as
|
|
1779 |
out of memory, hard disk failure or the computer blows up.
|
|
1780 |
Consider set_var::check() method if there is a need to return
|
|
1781 |
an error due to logics.
|
|
1782 |
*/
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1783 |
int set_var::update(Session *session) |
1
by brian
clean slate |
1784 |
{
|
1055.2.20
by Jay Pipes
Refactors sys_var class -- doxygenates and documents the class members and functions. Protects all member variables and adds public getters/setters. |
1785 |
if (! value) |
520.1.22
by Brian Aker
Second pass of thd cleanup |
1786 |
var->set_default(session, type); |
1787 |
else if (var->update(session, this)) |
|
1
by brian
clean slate |
1788 |
return -1; // should never happen |
1055.2.20
by Jay Pipes
Refactors sys_var class -- doxygenates and documents the class members and functions. Protects all member variables and adds public getters/setters. |
1789 |
if (var->getAfterUpdateTrigger()) |
1790 |
(*var->getAfterUpdateTrigger())(session, type); |
|
1
by brian
clean slate |
1791 |
return 0; |
1792 |
}
|
|
1793 |
||
1794 |
/*****************************************************************************
|
|
1795 |
Functions to handle SET @user_variable=const_expr
|
|
1796 |
*****************************************************************************/
|
|
1797 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1798 |
int set_var_user::check(Session *session) |
1
by brian
clean slate |
1799 |
{
|
1800 |
/*
|
|
1801 |
Item_func_set_user_var can't substitute something else on its place =>
|
|
1802 |
0 can be passed as last argument (reference on item)
|
|
1803 |
*/
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1804 |
return (user_var_item->fix_fields(session, (Item**) 0) || |
1
by brian
clean slate |
1805 |
user_var_item->check(0)) ? -1 : 0; |
1806 |
}
|
|
1807 |
||
1808 |
||
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
1809 |
int set_var_user::update(Session *) |
1
by brian
clean slate |
1810 |
{
|
1811 |
if (user_var_item->update()) |
|
1812 |
{
|
|
1813 |
/* Give an error if it's not given already */
|
|
1814 |
my_message(ER_SET_CONSTANTS_ONLY, ER(ER_SET_CONSTANTS_ONLY), MYF(0)); |
|
1815 |
return -1; |
|
1816 |
}
|
|
1817 |
return 0; |
|
1818 |
}
|
|
1819 |
||
1820 |
/****************************************************************************
|
|
1821 |
Functions to handle table_type
|
|
1822 |
****************************************************************************/
|
|
1823 |
||
1824 |
/* Based upon sys_var::check_enum() */
|
|
1825 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1826 |
bool sys_var_session_storage_engine::check(Session *session, set_var *var) |
1
by brian
clean slate |
1827 |
{
|
1828 |
char buff[STRING_BUFFER_USUAL_SIZE]; |
|
1829 |
const char *value; |
|
383.1.12
by Brian Aker
Much closer toward UTF8 being around all the time... |
1830 |
String str(buff, sizeof(buff), &my_charset_utf8_general_ci), *res; |
1
by brian
clean slate |
1831 |
|
971.1.21
by Monty Taylor
Store StorageEngine in system variables, rather than storage engine plugin. |
1832 |
var->save_result.storage_engine= NULL; |
1
by brian
clean slate |
1833 |
if (var->value->result_type() == STRING_RESULT) |
1834 |
{
|
|
1095.3.32
by Stewart Smith
misc codestyle fixes. usually around if ( and associated conditions |
1835 |
res= var->value->val_str(&str); |
1836 |
if (res == NULL || res->ptr() == NULL) |
|
1
by brian
clean slate |
1837 |
{
|
1095.3.9
by Stewart Smith
refactor ha_resolve_by_name to accept std::string instead of LEX_STRING |
1838 |
value= "NULL"; |
1
by brian
clean slate |
1839 |
goto err; |
1840 |
}
|
|
1095.3.9
by Stewart Smith
refactor ha_resolve_by_name to accept std::string instead of LEX_STRING |
1841 |
else
|
1842 |
{
|
|
1843 |
const std::string engine_name(res->ptr()); |
|
1130.1.4
by Monty Taylor
Moved StorageEngine into plugin namespace. |
1844 |
plugin::StorageEngine *engine; |
1183.1.29
by Brian Aker
Clean up interface so that Truncate sets the propper engine when |
1845 |
var->save_result.storage_engine= plugin::StorageEngine::findByName(*session, engine_name); |
1095.3.32
by Stewart Smith
misc codestyle fixes. usually around if ( and associated conditions |
1846 |
if (var->save_result.storage_engine == NULL) |
1095.3.9
by Stewart Smith
refactor ha_resolve_by_name to accept std::string instead of LEX_STRING |
1847 |
{
|
1848 |
value= res->c_ptr(); |
|
1849 |
goto err; |
|
1850 |
}
|
|
1095.3.32
by Stewart Smith
misc codestyle fixes. usually around if ( and associated conditions |
1851 |
engine= var->save_result.storage_engine; |
1095.3.9
by Stewart Smith
refactor ha_resolve_by_name to accept std::string instead of LEX_STRING |
1852 |
}
|
1
by brian
clean slate |
1853 |
return 0; |
1854 |
}
|
|
1855 |
value= "unknown"; |
|
1856 |
||
1857 |
err: |
|
1858 |
my_error(ER_UNKNOWN_STORAGE_ENGINE, MYF(0), value); |
|
1859 |
return 1; |
|
1860 |
}
|
|
1861 |
||
1862 |
||
575.1.2
by Monty Taylor
Changed a bunch of __attribute__((unused)) to removing the parameter name instead. |
1863 |
unsigned char *sys_var_session_storage_engine::value_ptr(Session *session, |
1273.13.24
by Brian Aker
Updating style, simplified code. |
1864 |
sql_var_t type, |
779.3.10
by Monty Taylor
Turned on -Wshadow. |
1865 |
const LEX_STRING *) |
1
by brian
clean slate |
1866 |
{
|
481
by Brian Aker
Remove all of uchar. |
1867 |
unsigned char* result; |
968.2.29
by Monty Taylor
First steps towards new plugin reg. |
1868 |
string engine_name; |
1130.1.4
by Monty Taylor
Moved StorageEngine into plugin namespace. |
1869 |
plugin::StorageEngine *engine= session->variables.*offset; |
1
by brian
clean slate |
1870 |
if (type == OPT_GLOBAL) |
971.1.21
by Monty Taylor
Store StorageEngine in system variables, rather than storage engine plugin. |
1871 |
engine= global_system_variables.*offset; |
971.1.14
by Monty Taylor
Slurp around strings rather than char* for storage engine name. |
1872 |
engine_name= engine->getName(); |
968.2.29
by Monty Taylor
First steps towards new plugin reg. |
1873 |
result= (unsigned char *) session->strmake(engine_name.c_str(), |
1874 |
engine_name.size()); |
|
1
by brian
clean slate |
1875 |
return result; |
1876 |
}
|
|
1877 |
||
1878 |
||
1273.13.24
by Brian Aker
Updating style, simplified code. |
1879 |
void sys_var_session_storage_engine::set_default(Session *session, sql_var_t type) |
1
by brian
clean slate |
1880 |
{
|
1130.1.4
by Monty Taylor
Moved StorageEngine into plugin namespace. |
1881 |
plugin::StorageEngine *old_value, *new_value, **value; |
1
by brian
clean slate |
1882 |
if (type == OPT_GLOBAL) |
1883 |
{
|
|
1884 |
value= &(global_system_variables.*offset); |
|
971.1.21
by Monty Taylor
Store StorageEngine in system variables, rather than storage engine plugin. |
1885 |
new_value= myisam_engine; |
1
by brian
clean slate |
1886 |
}
|
1887 |
else
|
|
1888 |
{
|
|
520.1.22
by Brian Aker
Second pass of thd cleanup |
1889 |
value= &(session->variables.*offset); |
971.1.19
by Monty Taylor
Remove most of plugin_ref. Fix several leaks (where the malloc was happening but never freed). One step away from no more plugin_ref. Yippee. It's so much easier the second time you try to do this. |
1890 |
new_value= global_system_variables.*offset; |
1
by brian
clean slate |
1891 |
}
|
51.1.46
by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE |
1892 |
assert(new_value); |
1
by brian
clean slate |
1893 |
old_value= *value; |
1894 |
*value= new_value; |
|
1895 |
}
|
|
1896 |
||
1897 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
1898 |
bool sys_var_session_storage_engine::update(Session *session, set_var *var) |
1
by brian
clean slate |
1899 |
{
|
1130.1.4
by Monty Taylor
Moved StorageEngine into plugin namespace. |
1900 |
plugin::StorageEngine **value= &(global_system_variables.*offset), *old_value; |
1
by brian
clean slate |
1901 |
if (var->type != OPT_GLOBAL) |
520.1.22
by Brian Aker
Second pass of thd cleanup |
1902 |
value= &(session->variables.*offset); |
1
by brian
clean slate |
1903 |
old_value= *value; |
971.1.21
by Monty Taylor
Store StorageEngine in system variables, rather than storage engine plugin. |
1904 |
if (old_value != var->save_result.storage_engine) |
1
by brian
clean slate |
1905 |
{
|
971.1.21
by Monty Taylor
Store StorageEngine in system variables, rather than storage engine plugin. |
1906 |
*value= var->save_result.storage_engine; |
1
by brian
clean slate |
1907 |
}
|
1908 |
return 0; |
|
1909 |
}
|
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
1910 |
|
1911 |
} /* namespace drizzled */ |