~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/kill.test

  • Committer: Stewart Smith
  • Date: 2009-03-11 06:37:19 UTC
  • mto: (910.4.19 sparc) (937.2.1 sparc)
  • mto: This revision was merged to the branch mainline in revision 931.
  • Revision ID: stewart@flamingspork.com-20090311063719-v9iqjd00ts6260vv
batch up more INSERTs into transactions to help tests run quicker.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
 
54
54
-- disable_result_log
55
55
-- disable_query_log
 
56
begin;
56
57
let $1 = 4096;
57
58
while ($1)
58
59
{
59
60
  eval insert into t1 values ($1);
60
61
  dec $1;
61
62
}
 
63
commit;
62
64
-- enable_query_log
63
65
-- enable_result_log
64
66