Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
rpl_log_pos.test
Package: mysql-4.1.16-win-src.zip [view]
Upload User: romrleung
Upload Date: 2022-05-23
Package Size: 18897k
Code Size: 1k
Category:
MySQL
Development Platform:
Visual C++
- #
- # Testing of setting slave to wrong log position with master_log_pos
- #
- source include/master-slave.inc;
- show master status;
- sync_slave_with_master;
- --replace_result $MASTER_MYPORT MASTER_PORT
- --replace_column 1 # 33 #
- show slave status;
- stop slave;
- change master to master_log_pos=73;
- start slave;
- sleep 5;
- stop slave;
- change master to master_log_pos=73;
- --replace_result $MASTER_MYPORT MASTER_PORT
- --replace_column 1 # 33 #
- show slave status;
- start slave;
- sleep 5;
- --replace_result $MASTER_MYPORT MASTER_PORT
- --replace_column 1 # 33 #
- show slave status;
- stop slave;
- change master to master_log_pos=173;
- start slave;
- sleep 2;
- --replace_result $MASTER_MYPORT MASTER_PORT
- --replace_column 1 # 33 #
- show slave status;
- connection master;
- show master status;
- create table if not exists t1 (n int);
- drop table if exists t1;
- create table t1 (n int);
- insert into t1 values (1),(2),(3);
- save_master_pos;
- connection slave;
- stop slave;
- change master to master_log_pos=79;
- start slave;
- sync_with_master;
- select * from t1;
- connection master;
- drop table t1;
- sync_slave_with_master;
- # End of 4.1 tests