~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/order_by.test

MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
377
377
create table t1(id int not null auto_increment primary key, t char(12));
378
378
disable_query_log;
379
379
let $1 = 1000;
 
380
begin;
380
381
while ($1)
381
382
 {
382
383
  eval insert into t1(t) values ('$1'); 
383
384
  dec $1;
384
385
 }
 
386
commit;
385
387
enable_query_log;
386
388
select id,t from t1 force index (primary) order by id;
387
389
drop table t1;