@@ -50,7 +50,7 @@ Warnings:
50
50
Warning 1292 Truncated incorrect query_cache_min_res_unit value: '4294967296'
51
51
SELECT @@global.query_cache_min_res_unit;
52
52
@@global.query_cache_min_res_unit
53
- 0
53
+ 4294967288
54
54
SET @@global.query_cache_min_res_unit = 511;
55
55
SELECT @@global.query_cache_min_res_unit;
56
56
@@global.query_cache_min_res_unit
@@ -71,23 +71,23 @@ Warnings:
71
71
Warning 1292 Truncated incorrect query_cache_min_res_unit value: '42949672950'
72
72
SELECT @@global.query_cache_min_res_unit;
73
73
@@global.query_cache_min_res_unit
74
- 0
74
+ 4294967288
75
75
SET @@global.query_cache_min_res_unit = ON;
76
76
ERROR 42000: Incorrect argument type to variable 'query_cache_min_res_unit'
77
77
SELECT @@global.query_cache_min_res_unit;
78
78
@@global.query_cache_min_res_unit
79
- 0
79
+ 4294967288
80
80
SET @@global.query_cache_min_res_unit = 'test';
81
81
ERROR 42000: Incorrect argument type to variable 'query_cache_min_res_unit'
82
82
SELECT @@global.query_cache_min_res_unit;
83
83
@@global.query_cache_min_res_unit
84
- 0
84
+ 4294967288
85
85
'#-------------------FN_DYNVARS_132_05----------------------------#'
86
86
SET @@session.query_cache_min_res_unit = 0;
87
87
ERROR HY000: Variable 'query_cache_min_res_unit' is a GLOBAL variable and should be set with SET GLOBAL
88
88
SELECT @@query_cache_min_res_unit;
89
89
@@query_cache_min_res_unit
90
- 0
90
+ 4294967288
91
91
'#----------------------FN_DYNVARS_132_06------------------------#'
92
92
SELECT @@global.query_cache_min_res_unit = VARIABLE_VALUE
93
93
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
0 commit comments