~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/extra/rpl_tests/rpl_insert_delayed.test

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
CREATE TABLE t1 (id INT primary key auto_increment, name VARCHAR(64));
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
 
--exec $MYSQL_SLAP --silent --concurrency=5 --iterations=200 --query=$query --delimiter=";"
 
22
--exec $DRIZZLE_SLAP --silent --concurrency=5 --iterations=200 --query=$query --delimiter=";"
23
23
 
24
24
FLUSH TABLE t1; # another way to be sure INSERT DELAYED has inserted
25
25
SELECT COUNT(*) FROM t1;