summaryrefslogtreecommitdiff
path: root/mysql-test/r/table_definition_cache_basic.result
blob: 56bfb40b2f89f96dc19edd734c7fcf03fdb20372 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
SET @start_value = @@global.table_definition_cache;
SELECT @start_value;
@start_value
128
'#--------------------FN_DYNVARS_019_01------------------------#'
SET @@global.table_definition_cache = 100;
SET @@global.table_definition_cache = DEFAULT;
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
128
'#---------------------FN_DYNVARS_019_02-------------------------#'
SET @@global.table_definition_cache = DEFAULT;
SELECT @@global.table_definition_cache = 128;
@@global.table_definition_cache = 128
1
'#--------------------FN_DYNVARS_019_03------------------------#'
SET @@global.table_definition_cache = 1;
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
1
SET @@global.table_definition_cache = 2;
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
2
SET @@global.table_definition_cache = 524287;
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
524287
SET @@global.table_definition_cache = 524288;
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
524288
'#--------------------FN_DYNVARS_019_04-------------------------#'
SET @@global.table_definition_cache = 0;
Warnings:
Warning	1292	Truncated incorrect table_definition_cache value: '0'
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
1
SET @@global.table_definition_cache = -1024;
Warnings:
Warning	1292	Truncated incorrect table_definition_cache value: '0'
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
1
SET @@global.table_definition_cache = 524289;
Warnings:
Warning	1292	Truncated incorrect table_definition_cache value: '524289'
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
524288
SET @@global.table_definition_cache = 42949672950;
Warnings:
Warning	1292	Truncated incorrect table_definition_cache value: '42949672950'
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
524288
'Bug # 34837: Errors are not coming on assigning invalid values to variable';
SET @@global.table_definition_cache = 21221204.10;
ERROR 42000: Incorrect argument type to variable 'table_definition_cache'
SET @@global.table_definition_cache = ON;
ERROR 42000: Incorrect argument type to variable 'table_definition_cache'
'#-------------------FN_DYNVARS_019_05----------------------------#'
SET @@session.table_definition_cache = 0;
ERROR HY000: Variable 'table_definition_cache' is a GLOBAL variable and should be set with SET GLOBAL
SELECT @@session.table_definition_cache;
ERROR HY000: Variable 'table_definition_cache' is a GLOBAL variable
'#----------------------FN_DYNVARS_019_06------------------------#'
SELECT @@global.table_definition_cache = VARIABLE_VALUE 
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES 
WHERE VARIABLE_NAME='table_definition_cache';
@@global.table_definition_cache = VARIABLE_VALUE
1
'#---------------------FN_DYNVARS_019_07----------------------#'
SET @@global.table_definition_cache = TRUE;
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
1
SET @@global.table_definition_cache = FALSE;
Warnings:
Warning	1292	Truncated incorrect table_definition_cache value: '0'
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
1
'#---------------------FN_DYNVARS_019_08----------------------#'
SET @@global.table_definition_cache = 5;
SELECT @@table_definition_cache = @@global.table_definition_cache;
@@table_definition_cache = @@global.table_definition_cache
1
'#---------------------FN_DYNVARS_019_09----------------------#'
SET table_definition_cache = 1;
ERROR HY000: Variable 'table_definition_cache' is a GLOBAL variable and should be set with SET GLOBAL
SET global.table_definition_cache = 1;
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'table_definition_cache = 1' at line 1
SELECT global.table_definition_cache;
ERROR 42S02: Unknown table 'global' in field list
SELECT table_definition_cache = @@session.table_definition_cache;
ERROR 42S22: Unknown column 'table_definition_cache' in 'field list'
SET @@global.table_definition_cache = @start_value;
SELECT @@global.table_definition_cache;
@@global.table_definition_cache
128