~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/rpl/t/rpl_insert.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:
14
14
CREATE TABLE t1 (id INT, name VARCHAR(64));
15
15
 
16
16
let $query = "INSERT DELAYED INTO t1 VALUES (1, 'Dr. No'), (2, 'From Russia With Love'), (3, 'Goldfinger'), (4, 'Thunderball'), (5, 'You Only Live Twice')";
17
 
--exec $MYSQL_SLAP --silent --concurrency=5 --iterations=200 --query=$query --delimiter=";"
 
17
--exec $DRIZZLE_SLAP --silent --concurrency=5 --iterations=200 --query=$query --delimiter=";"
18
18
 
19
19
# Wait until all the 5000 inserts has been inserted into the table
20
20
let $wait_condition= SELECT COUNT(*) = 5000 FROM mysqlslap.t1;