~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include/varchar.inc

  • 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:
38
38
create table t1 (v varchar(10), c char(10), t text, key(v), key(c), key(t(10)));
39
39
show create table t1;
40
40
disable_query_log;
 
41
begin;
41
42
let $1=10;
42
43
while ($1)
43
44
{
51
52
  }
52
53
  dec $1;
53
54
}
 
55
commit;
54
56
enable_query_log;
55
57
select count(*) from t1;
56
58
insert into t1 values(concat('a',char(1)),concat('a',char(1)),concat('a',char(1)));