File: rpl_semi_sync_slave_enabled_basic.test

package info (click to toggle)
mysql-5.5 5.5.60-0%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 201,012 kB
  • sloc: cpp: 648,063; ansic: 552,041; perl: 48,017; pascal: 25,099; sh: 15,065; yacc: 13,088; cs: 4,647; xml: 4,178; sql: 3,380; makefile: 1,368; lex: 639; awk: 54
file content (66 lines) | stat: -rw-r--r-- 2,510 bytes parent folder | download | duplicates (5)
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

#
# exists as a global only
#
# 2010-01-21 OBN - Added 
#
#
source include/not_embedded.inc;
source include/have_semisync_plugin.inc;
# The following is to prevent a mis-match on windows that has the name of of the lib ending with 'dll' 
--replace_regex /\.dll/.so/
eval INSTALL PLUGIN rpl_semi_sync_slave SONAME '$SEMISYNC_SLAVE_PLUGIN';
select @@global.rpl_semi_sync_slave_enabled;
SET @start_global_value = @@global.rpl_semi_sync_slave_enabled;

select @@global.rpl_semi_sync_slave_enabled in (0,1);
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
select @@session.rpl_semi_sync_slave_enabled;
show global variables like 'rpl_semi_sync_slave_enabled';
show session variables like 'rpl_semi_sync_slave_enabled';
select * from information_schema.global_variables where variable_name='rpl_semi_sync_slave_enabled';
select * from information_schema.session_variables where variable_name='rpl_semi_sync_slave_enabled';

#
# show that it's writable
#
set global rpl_semi_sync_slave_enabled=0;
--error ER_GLOBAL_VARIABLE
set session rpl_semi_sync_slave_enabled=0;
select @@global.rpl_semi_sync_slave_enabled;
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
select @@session.rpl_semi_sync_slave_enabled;
show global variables like 'rpl_semi_sync_slave_enabled';
show session variables like 'rpl_semi_sync_slave_enabled';
select * from information_schema.global_variables where variable_name='rpl_semi_sync_slave_enabled';
select * from information_schema.session_variables where variable_name='rpl_semi_sync_slave_enabled';
set global rpl_semi_sync_slave_enabled=1;
--error ER_GLOBAL_VARIABLE
set session rpl_semi_sync_slave_enabled=1;
select @@global.rpl_semi_sync_slave_enabled;
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
select @@session.rpl_semi_sync_slave_enabled;
show global variables like 'rpl_semi_sync_slave_enabled';
show session variables like 'rpl_semi_sync_slave_enabled';
select * from information_schema.global_variables where variable_name='rpl_semi_sync_slave_enabled';
select * from information_schema.session_variables where variable_name='rpl_semi_sync_slave_enabled';

#
# incorrect types
#
--error ER_WRONG_TYPE_FOR_VAR
set global rpl_semi_sync_slave_enabled=1.1;
--error ER_WRONG_TYPE_FOR_VAR
set global rpl_semi_sync_slave_enabled=1e1;
--error ER_WRONG_VALUE_FOR_VAR
set global rpl_semi_sync_slave_enabled="some text";
--error ER_WRONG_VALUE_FOR_VAR


#
# Cleanup
#
SET @@global.rpl_semi_sync_slave_enabled = @start_global_value;
select @@global.rpl_semi_sync_slave_enabled;
UNINSTALL PLUGIN rpl_semi_sync_slave;