|
原帖由 dimen007 于 2011-5-9 11:35 发表 ![]()
你的MASTER 的binlog_format=row,这是无法复制临时表的。从你表的命名来看应该是临时表的问题
在my.cnf中配置3306\3307的Binlog_format=row,
1. 查看3307的binlog日志
2. mysqlbinlog /data/mysqldata3307/binlog/mysql-bin3307.000016
create temporary table test2 select * from test3307 /*!*/;
DELIMITER ;
# End of log file
1. 查看3306的binlog日志
2. mysqlbinlog /data/mysqldata3306/binlog/mysql-bin3306.000006
DELIMITER ;
# End of log file
你好,我的那个表不是临时表,是实体表。 |
|