summaryrefslogtreecommitdiffstats
path: root/storage/rocksdb/mysql-test/rocksdb_sys_vars/r/rocksdb_enable_2pc_basic.result
blob: 686f8bcd39aaa2785e3ac0ab728c6550b10b5816 (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
CREATE TABLE valid_values (value varchar(255)) ENGINE=myisam;
INSERT INTO valid_values VALUES(1);
INSERT INTO valid_values VALUES(0);
INSERT INTO valid_values VALUES('on');
INSERT INTO valid_values VALUES('off');
CREATE TABLE invalid_values (value varchar(255)) ENGINE=myisam;
INSERT INTO invalid_values VALUES('\'aaa\'');
INSERT INTO invalid_values VALUES('\'bbb\'');
SET @start_global_value = @@global.ROCKSDB_ENABLE_2PC;
SELECT @start_global_value;
@start_global_value
1
'# Setting to valid values in global scope#'
"Trying to set variable @@global.ROCKSDB_ENABLE_2PC to 1"
SET @@global.ROCKSDB_ENABLE_2PC   = 1;
SELECT @@global.ROCKSDB_ENABLE_2PC;
@@global.ROCKSDB_ENABLE_2PC
1
"Setting the global scope variable back to default"
SET @@global.ROCKSDB_ENABLE_2PC = DEFAULT;
SELECT @@global.ROCKSDB_ENABLE_2PC;
@@global.ROCKSDB_ENABLE_2PC
1
"Trying to set variable @@global.ROCKSDB_ENABLE_2PC to 0"
SET @@global.ROCKSDB_ENABLE_2PC   = 0;
SELECT @@global.ROCKSDB_ENABLE_2PC;
@@global.ROCKSDB_ENABLE_2PC
0
"Setting the global scope variable back to default"
SET @@global.ROCKSDB_ENABLE_2PC = DEFAULT;
SELECT @@global.ROCKSDB_ENABLE_2PC;
@@global.ROCKSDB_ENABLE_2PC
1
"Trying to set variable @@global.ROCKSDB_ENABLE_2PC to on"
SET @@global.ROCKSDB_ENABLE_2PC   = on;
SELECT @@global.ROCKSDB_ENABLE_2PC;
@@global.ROCKSDB_ENABLE_2PC
1
"Setting the global scope variable back to default"
SET @@global.ROCKSDB_ENABLE_2PC = DEFAULT;
SELECT @@global.ROCKSDB_ENABLE_2PC;
@@global.ROCKSDB_ENABLE_2PC
1
"Trying to set variable @@global.ROCKSDB_ENABLE_2PC to off"
SET @@global.ROCKSDB_ENABLE_2PC   = off;
SELECT @@global.ROCKSDB_ENABLE_2PC;
@@global.ROCKSDB_ENABLE_2PC
0
"Setting the global scope variable back to default"
SET @@global.ROCKSDB_ENABLE_2PC = DEFAULT;
SELECT @@global.ROCKSDB_ENABLE_2PC;
@@global.ROCKSDB_ENABLE_2PC
1
"Trying to set variable @@session.ROCKSDB_ENABLE_2PC to 444. It should fail because it is not session."
SET @@session.ROCKSDB_ENABLE_2PC   = 444;
ERROR HY000: Variable 'rocksdb_enable_2pc' is a GLOBAL variable and should be set with SET GLOBAL
'# Testing with invalid values in global scope #'
"Trying to set variable @@global.ROCKSDB_ENABLE_2PC to 'aaa'"
SET @@global.ROCKSDB_ENABLE_2PC   = 'aaa';
Got one of the listed errors
SELECT @@global.ROCKSDB_ENABLE_2PC;
@@global.ROCKSDB_ENABLE_2PC
1
"Trying to set variable @@global.ROCKSDB_ENABLE_2PC to 'bbb'"
SET @@global.ROCKSDB_ENABLE_2PC   = 'bbb';
Got one of the listed errors
SELECT @@global.ROCKSDB_ENABLE_2PC;
@@global.ROCKSDB_ENABLE_2PC
1
SET @@global.ROCKSDB_ENABLE_2PC = @start_global_value;
SELECT @@global.ROCKSDB_ENABLE_2PC;
@@global.ROCKSDB_ENABLE_2PC
1
DROP TABLE valid_values;
DROP TABLE invalid_values;