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