summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/t/old_alter_table_basic.test
blob: cce180fea67b7a0bb1e58117252a2847b2c02303 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

#
# 2010-01-20 OBN - added check of I_S values after variable value changed
#

SET @start_global_value = @@global.old_alter_table;
SELECT @start_global_value;

#
# exists as global and session
#
select @@global.old_alter_table;
select @@session.old_alter_table;
show global variables like 'old_alter_table';
show session variables like 'old_alter_table';
select * from information_schema.global_variables where variable_name='old_alter_table';
select * from information_schema.session_variables where variable_name='old_alter_table';

#
# show that it's writable
#
set global old_alter_table=1;
set session old_alter_table=ON;
select @@global.old_alter_table;
select @@session.old_alter_table;
show global variables like 'old_alter_table';
show session variables like 'old_alter_table';
select * from information_schema.global_variables where variable_name='old_alter_table';
select * from information_schema.session_variables where variable_name='old_alter_table';

#
# incorrect types
#
--error ER_WRONG_TYPE_FOR_VAR
set global old_alter_table=1.1;
--error ER_WRONG_TYPE_FOR_VAR
set global old_alter_table=1e1;
--error ER_WRONG_VALUE_FOR_VAR
set global old_alter_table="foo";

SET @@global.old_alter_table = @start_global_value;
SELECT @@global.old_alter_table;