summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/binlog_checksum.result
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2016-05-01 19:10:13 +0300
committerMonty <monty@mariadb.org>2016-05-01 19:10:13 +0300
commit5a7374d71b1c1bb88cd09c4c634483113f793a2c (patch)
tree23b6f1e282473725ac9e440de445f71a53943ba7 /mysql-test/suite/galera/r/binlog_checksum.result
parent4f1c81de2875cbce4180e152d12a8a1df60c717a (diff)
downloadmariadb-git-5a7374d71b1c1bb88cd09c4c634483113f793a2c.tar.gz
Fixed test cases that broke because we now print changing of connections
- Don't log connection creation in galera_connect.inc
Diffstat (limited to 'mysql-test/suite/galera/r/binlog_checksum.result')
-rw-r--r--mysql-test/suite/galera/r/binlog_checksum.result7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/suite/galera/r/binlog_checksum.result b/mysql-test/suite/galera/r/binlog_checksum.result
index 5c1981fc17f..e86f3892ac7 100644
--- a/mysql-test/suite/galera/r/binlog_checksum.result
+++ b/mysql-test/suite/galera/r/binlog_checksum.result
@@ -1,7 +1,9 @@
# On node_1
+connection node_1;
SET @binlog_checksum_saved= @@GLOBAL.BINLOG_CHECKSUM;
SET @@GLOBAL.BINLOG_CHECKSUM=CRC32;
# On node_2
+connection node_2;
SET @binlog_checksum_saved= @@GLOBAL.BINLOG_CHECKSUM;
SET @@GLOBAL.BINLOG_CHECKSUM=CRC32;
USE test;
@@ -23,6 +25,7 @@ c1
5
# On node_2
+connection node_2;
SELECT * FROM test.t1;
c1
1
@@ -31,6 +34,10 @@ c1
4
5
DROP TABLE t1;
+connection node_1;
SET @@GLOBAL.BINLOG_CHECKSUM = @binlog_checksum_saved;
+connection node_2;
SET @@GLOBAL.BINLOG_CHECKSUM = @binlog_checksum_saved;
+disconnect node_2;
+disconnect node_1;
# End of test