~linuxjedi/drizzle/elliott-bug-654568

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/t/bulk_insert.inc

  • Committer: lbieber
  • Date: 2010-09-22 22:06:36 UTC
  • mfrom: (1786.1.3 build)
  • Revision ID: lbieber@orisndriz08-20100922220636-agrmqaqv2u7ln6ff
Merge Shrews - Add transaction log bulk tests
Merge Brian - Remove 3 byte indexes
Merge Stewart - Move string functions into plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Generate enough queries to exceed maximum Transaction message size
 
2
 
 
3
--disable_query_log
 
4
 
 
5
let $1=9300;
 
6
let $2=0;
 
7
 
 
8
while ($1)
 
9
{
 
10
  inc $2;
 
11
  eval INSERT INTO t (a, b) VALUES ($2, 'aaaaaaaaaabbbbbbbbbbccccccccccddddddddddeeeeeeeeeeffffffffffgggggggggghhhhhhhhhhiiiiiiiiiijjjjjjjjjj');
 
12
  dec $1;
 
13
}
 
14
 
 
15
--enable_query_log