diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2016-03-25 20:51:22 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2016-03-31 10:11:16 +0400 |
commit | 282497dd6d1049b4fb963641504c2733752845a7 (patch) | |
tree | 7288d17c29fbbe9ac47ec51f6988fb954f59a361 /mysql-test/suite/rpl/t/rpl_user_variables.test | |
parent | 5052e2479e873461bebfcedbc674bbaf57d3c968 (diff) | |
download | mariadb-git-282497dd6d1049b4fb963641504c2733752845a7.tar.gz |
MDEV-6720 - enable connection log in mysqltest by default
Diffstat (limited to 'mysql-test/suite/rpl/t/rpl_user_variables.test')
-rw-r--r-- | mysql-test/suite/rpl/t/rpl_user_variables.test | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/mysql-test/suite/rpl/t/rpl_user_variables.test b/mysql-test/suite/rpl/t/rpl_user_variables.test index dd6ddf39580..3edd9b0a5bf 100644 --- a/mysql-test/suite/rpl/t/rpl_user_variables.test +++ b/mysql-test/suite/rpl/t/rpl_user_variables.test @@ -120,14 +120,14 @@ CALL test.insert(); SET @VAR=1; CALL test.insert(); ---echo On master: Check the tables for correct data +--echo Check the tables for correct data SELECT * FROM t20; SELECT * FROM t21; sync_slave_with_master; ---echo On slave: Check the tables for correct data and it matches master +--echo Check the tables for correct data and it matches master SELECT * FROM t20; SELECT * FROM t21; @@ -167,13 +167,13 @@ INSERT INTO t1 VALUES (square()); SET @var = 5; INSERT INTO t1 VALUES (square()); ---echo On master: Retrieve the values from the table +--echo Retrieve the values from the table SELECT * FROM t1; sync_slave_with_master; ---echo On slave: Retrieve the values from the table and verify they are the same as on master +--echo Retrieve the values from the table and verify they are the same as on master SELECT * FROM t1; @@ -227,7 +227,7 @@ SET @b = 125; SET @c = 1; INSERT INTO t1 values(f2()); ---echo On master: Retrieve the values from the table +--echo Retrieve the values from the table sync_slave_with_master; connection master; @@ -236,7 +236,7 @@ SELECT * from t1; connection slave; ---echo On slave: Check the tables for correct data and it matches master +--echo Check the tables for correct data and it matches master SELECT * from t1; @@ -280,14 +280,14 @@ connection master; SET @a:=100; INSERT INTO t1 values (5); ---echo On master: Check to see that data was inserted correctly in both tables +--echo Check to see that data was inserted correctly in both tables SELECT * from t1; SELECT * from t2; sync_slave_with_master; ---echo On slave: Check the tables for correct data and it matches master +--echo Check the tables for correct data and it matches master SELECT * from t1; SELECT * from t2; @@ -361,14 +361,14 @@ connection master; SET @a:=123; SELECT f1(), f2(); ---echo On master: Check to see that data was inserted correctly +--echo Check to see that data was inserted correctly INSERT INTO t1 VALUES(f1()); SELECT * FROM t1; sync_slave_with_master; ---echo On slave: Check the table for correct data and it matches master +--echo Check the table for correct data and it matches master SELECT * FROM t1; |