1'#---------------------BS_STVARS_040_01----------------------#'
2SELECT COUNT(@@GLOBAL.license);
3COUNT(@@GLOBAL.license)
41
51 Expected
6'#---------------------BS_STVARS_040_02----------------------#'
7SET @@GLOBAL.license=1;
8ERROR HY000: Variable 'license' is a read only variable
9Expected error 'Read only variable'
10SELECT COUNT(@@GLOBAL.license);
11COUNT(@@GLOBAL.license)
121
131 Expected
14'#---------------------BS_STVARS_040_03----------------------#'
15SELECT @@GLOBAL.license = VARIABLE_VALUE
16FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
17WHERE VARIABLE_NAME='license';
18@@GLOBAL.license = VARIABLE_VALUE
191
201 Expected
21SELECT COUNT(@@GLOBAL.license);
22COUNT(@@GLOBAL.license)
231
241 Expected
25SELECT COUNT(VARIABLE_VALUE)
26FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
27WHERE VARIABLE_NAME='license';
28COUNT(VARIABLE_VALUE)
291
301 Expected
31'#---------------------BS_STVARS_040_04----------------------#'
32SELECT @@license = @@GLOBAL.license;
33@@license = @@GLOBAL.license
341
351 Expected
36'#---------------------BS_STVARS_040_05----------------------#'
37SELECT COUNT(@@license);
38COUNT(@@license)
391
401 Expected
41SELECT COUNT(@@local.license);
42ERROR HY000: Variable 'license' is a GLOBAL variable
43Expected error 'Variable is a GLOBAL variable'
44SELECT COUNT(@@SESSION.license);
45ERROR HY000: Variable 'license' is a GLOBAL variable
46Expected error 'Variable is a GLOBAL variable'
47SELECT COUNT(@@GLOBAL.license);
48COUNT(@@GLOBAL.license)
491
501 Expected
51SELECT license = @@SESSION.license;
52ERROR 42S22: Unknown column 'license' in 'field list'
53Expected error 'Readonly variable'
54