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

reenable tests from engines/funcs

This commit is contained in:
Alice Sherepa
2021-03-01 14:29:29 +01:00
parent 4020e4aee0
commit ee12b055ff
192 changed files with 3969 additions and 6524 deletions

View File

@@ -6,31 +6,22 @@
# Start replication master -> slave
#
connection slave;
--disable_warnings
stop slave;
--enable_warnings
--source include/stop_slave.inc
--replace_result $MASTER_MYPORT MASTER_PORT
eval change master to master_host='127.0.0.1',master_user='root',
master_password='',master_port=$MASTER_MYPORT;
start slave;
--source include/start_slave.inc
#
# Start replication slave -> master
#
connection master;
--disable_warnings
stop slave;
--enable_warnings
--replace_result $SLAVE_MYPORT SLAVE_PORT
eval change master to master_host='127.0.0.1',master_user='root',
master_password='',master_port=$SLAVE_MYPORT;
start slave;
#
# Wait for start of slave IO and SQL threads
#
let $result_pattern= '%127.0.0.1%root%slave-bin.000001%slave-bin.000001%Yes%Yes%0%0%None%';
-- source $MYSQL_TEST_DIR/suite/engines/funcs/t/wait_slave_status.inc
--source include/start_slave.inc
#
# Flush logs of slave
@@ -45,4 +36,5 @@ sleep 5;
--replace_column 1 # 8 # 9 # 16 # 23 # 33 #
--vertical_results
SHOW SLAVE STATUS;
STOP SLAVE;
stop slave;
--source include/rpl_end.inc