~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/heap_hash.result

  • Committer: Brian Aker
  • Date: 2009-11-20 19:07:14 UTC
  • mfrom: (1223.1.5 push)
  • Revision ID: brian@gaz-20091120190714-dhr3lgqxrt7dq1fc
Collected Merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
349
349
1       SIMPLE  t1      ref     heap_idx        heap_idx        82      const   9       Using where
350
350
1       SIMPLE  t3      ref     a       a       164     func,const      7       Using where
351
351
drop table t1, t2, t3;
352
 
create temporary temporary table t1 ( a int, index (a) ) engine=memory;
 
352
create temporary table t1 ( a int, index (a) ) engine=memory;
353
353
insert into t1 values (1),(2),(3),(4),(5);
354
354
select a from t1 where a in (1,3);
355
355
a