You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
446 B

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