~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/heap.test

  • Committer: Monty Taylor
  • Date: 2009-03-03 08:32:10 UTC
  • mfrom: (909 drizzle)
  • mto: This revision was merged to the branch mainline in revision 910.
  • Revision ID: mordred@inaugust.com-20090303083210-3cnjr53jspruighy
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
235
235
create table t1 (v varchar(10), c char(10), t varchar(50), key(v), key(c), key(t(10)));
236
236
show create table t1;
237
237
disable_query_log;
238
 
begin;
239
238
let $1=10;
240
239
while ($1)
241
240
{
249
248
  }
250
249
  dec $1;
251
250
}
252
 
commit;
253
251
enable_query_log;
254
252
select count(*) from t1;
255
253
insert into t1 values(concat('a',char(1)),concat('a',char(1)),concat('a',char(1)));
321
319
show create table t1;
322
320
disable_query_log;
323
321
let $1=10;
324
 
begin;
325
322
while ($1)
326
323
{
327
324
  let $2=27;
334
331
  }
335
332
  dec $1;
336
333
}
337
 
commit;
338
334
enable_query_log;
339
335
select count(*) from t1;
340
336
insert into t1 values(concat('a',char(1)),concat('a',char(1)),concat('a',char(1)));