rpl_loaddata_rule_m.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # See if the master logs LOAD DATA INFILE correctly when binlog_*_db rules
  2. # exist.
  3. # This is for BUG#1100 (LOAD DATA INFILE was half-logged).
  4. source include/master-slave.inc;
  5. --disable_warnings
  6. drop database if exists mysqltest;
  7. --enable_warnings
  8. connection slave;
  9. stop slave; # don't need slave for this test
  10. # Test logging on master
  11. connection master;
  12. # 'test' is the current database
  13. create database mysqltest;
  14. create table t1(a int, b int, unique(b));
  15. use mysqltest;
  16. load data infile '../../std_data/rpl_loaddata.dat' into table test.t1;
  17. show binlog events from 79; # should be nothing
  18. drop database mysqltest;
  19. # End of 4.1 tests