mariadb/mysql-test/suite/rpl/include/rpl_mixed_check_table.inc

17 lines
446 B
PHP
Raw Normal View History

2007-02-06 13:35:54 +01:00
#########################################
# Author: Serge Kozlov skozlov@mysql.com
# Date: 07/10/2006
# Purpose: Checking created tables on master and same tables on slave
# Requirements:
#########################################
--echo ==========MASTER==========
SHOW CREATE TABLE t1;
SHOW CREATE TABLE t2;
sync_slave_with_master;
--echo ==========SLAVE===========
USE test_rpl;
SHOW CREATE TABLE t1;
SHOW CREATE TABLE t2;
connection master;