⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rpl_ee_error.test

📁 这是linux下运行的mysql软件包,可用于linux 下安装 php + mysql + apach 的网络配置
💻 TEST
字号:
# See if an EE_ error in one event of the master's binlog stops replication# (it should not: in this configuration the EE_ error is probably not # critical). Example: you do a DROP TABLE on a table which has no MYI file# check if START SLAVE, RESET SLAVE, CHANGE MASTER reset Last_slave_error and# Last_slave_errno in SHOW SLAVE STATUS (1st and 3rd commands did not: bug 986).source include/master-slave.inc;create table t1 (a int) engine=myisam;flush tables;system rm $MYSQLTEST_VARDIR/master-data/test/t1.MYI ;drop table if exists t1;save_master_pos;connection slave;sync_with_master;# Now a real error.connection master;create table t1 (a int, unique(a)) engine=myisam;set sql_log_bin=0;insert into t1 values(2);set sql_log_bin=1;save_master_pos;--error 1062insert into t1 values(1),(2);drop table t1;save_master_pos;connection slave;wait_for_slave_to_stop;# End of 4.1 tests

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -