~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/r/datadir_basic.result

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
'#---------------------BS_STVARS_004_01----------------------#'
 
2
SELECT COUNT(@@GLOBAL.datadir);
 
3
COUNT(@@GLOBAL.datadir)
 
4
1
 
5
1 Expected
 
6
'#---------------------BS_STVARS_004_02----------------------#'
 
7
SET @@GLOBAL.datadir=1;
 
8
ERROR HY000: Variable 'datadir' is a read only variable
 
9
Expected error 'Read only variable'
 
10
SELECT COUNT(@@GLOBAL.datadir);
 
11
COUNT(@@GLOBAL.datadir)
 
12
1
 
13
1 Expected
 
14
'#---------------------BS_STVARS_004_03----------------------#'
 
15
SELECT @@GLOBAL.datadir = VARIABLE_VALUE
 
16
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
 
17
WHERE VARIABLE_NAME='datadir';
 
18
@@GLOBAL.datadir = VARIABLE_VALUE
 
19
1
 
20
1 Expected
 
21
SELECT COUNT(@@GLOBAL.datadir);
 
22
COUNT(@@GLOBAL.datadir)
 
23
1
 
24
1 Expected
 
25
SELECT COUNT(VARIABLE_VALUE)
 
26
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES 
 
27
WHERE VARIABLE_NAME='datadir';
 
28
COUNT(VARIABLE_VALUE)
 
29
1
 
30
1 Expected
 
31
'#---------------------BS_STVARS_004_04----------------------#'
 
32
SELECT @@datadir = @@GLOBAL.datadir;
 
33
@@datadir = @@GLOBAL.datadir
 
34
1
 
35
1 Expected
 
36
'#---------------------BS_STVARS_004_05----------------------#'
 
37
SELECT COUNT(@@datadir);
 
38
COUNT(@@datadir)
 
39
1
 
40
1 Expected
 
41
SELECT COUNT(@@local.datadir);
 
42
ERROR HY000: Variable 'datadir' is a GLOBAL variable
 
43
Expected error 'Variable is a GLOBAL variable'
 
44
SELECT COUNT(@@SESSION.datadir);
 
45
ERROR HY000: Variable 'datadir' is a GLOBAL variable
 
46
Expected error 'Variable is a GLOBAL variable'
 
47
SELECT COUNT(@@GLOBAL.datadir);
 
48
COUNT(@@GLOBAL.datadir)
 
49
1
 
50
1 Expected
 
51
SELECT datadir = @@SESSION.datadir;
 
52
ERROR 42S22: Unknown column 'datadir' in 'field list'
 
53
Expected error 'Readonly variable'