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_free_items.test
Package: mysql-4.1.16-win-src.zip [view]
Upload User: romrleung
Upload Date: 2022-05-23
Package Size: 18897k
Code Size: 0k
Category:
MySQL
Development Platform:
Visual C++
- source include/master-slave.inc;
- create table t1 (a int);
- create table t2 (a int);
- disable_query_log;
- SET @query="INSERT INTO t2 SELECT * FROM t1 WHERE a REGEXP "0"";
- let $1 = 2000;
- while ($1)
- {
- eval SET @query=concat(@query, " OR a REGEXP '$1'");
- dec $1;
- }
- let $1=`select @query`;
- eval $1;
- enable_query_log;
- # I have seen the slave crash either now or at shutdown
- sync_slave_with_master;
- connection master;
- drop table t1;
- drop table t2;
- sync_slave_with_master;
- # End of 4.1 tests