~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/extra/rpl_tests/rpl_insert_delayed.test

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
# happened only in statement-based binlogging.
18
18
#
19
19
 
20
 
CREATE TABLE t1 (id INT primary key auto_increment, name VARCHAR(64));
 
20
CREATE TABLE t1 (id INT primary key auto_increment, name VARCHAR(64)) ENGINE=MyISAM;
21
21
let $query = "INSERT DELAYED INTO t1 VALUES (null, 'Dr. No'), (null, 'From Russia With Love'), (null, 'Goldfinger'), (null, 'Thunderball'), (null, 'You Only Live Twice')";
22
22
--exec $MYSQL_SLAP --silent --concurrency=5 --iterations=200 --query=$query --delimiter=";"
23
23