summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/engines/funcs/r/rpl_variables.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/engines/funcs/r/rpl_variables.result')
-rw-r--r--mysql-test/suite/engines/funcs/r/rpl_variables.result18
1 files changed, 18 insertions, 0 deletions
diff --git a/mysql-test/suite/engines/funcs/r/rpl_variables.result b/mysql-test/suite/engines/funcs/r/rpl_variables.result
new file mode 100644
index 00000000..547c324f
--- /dev/null
+++ b/mysql-test/suite/engines/funcs/r/rpl_variables.result
@@ -0,0 +1,18 @@
+include/master-slave.inc
+[connection master]
+set @my_slave_net_timeout =@@global.slave_net_timeout;
+set @my_sql_slave_skip_counter =@@global.sql_slave_skip_counter;
+set global slave_net_timeout=100;
+set global sql_slave_skip_counter=100;
+show variables like 'slave_compressed_protocol';
+Variable_name Value
+slave_compressed_protocol OFF
+show variables like 'slave_load_tmpdir';
+Variable_name Value
+slave_load_tmpdir SLAVE_LOAD_TMPDIR
+show variables like 'slave_skip_errors';
+Variable_name Value
+slave_skip_errors 3,100,137,643,1752
+set global slave_net_timeout=@my_slave_net_timeout;
+set global sql_slave_skip_counter=@my_sql_slave_skip_counter;
+include/rpl_end.inc