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

MySQL数据库

开发平台:

Visual C++

  1. source include/master-slave.inc;
  2. --replace_column 1 # 33 #
  3. show slave status;
  4. #
  5. # Load table should not succeed on the master as this is not a slave
  6. #
  7. --error 1218
  8. load table t1 from master;
  9. connection slave;
  10. --error 1188
  11. load table t1 from master;
  12. # End of 4.1 tests