1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-6720 - enable connection log in mysqltest by default

This commit is contained in:
Sergey Vojtovich
2016-03-25 20:51:22 +04:00
parent 5052e2479e
commit 282497dd6d
1559 changed files with 38534 additions and 9891 deletions

View File

@@ -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;