~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/heap_hash.test

  • 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:
257
257
drop table t1, t2, t3;
258
258
 
259
259
# Fix for BUG#8371: wrong rec_per_key value for hash index on temporary table
260
 
create temporary temporary table t1 ( a int, index (a) ) engine=memory;
 
260
create temporary table t1 ( a int, index (a) ) engine=memory;
261
261
insert into t1 values (1),(2),(3),(4),(5);
262
262
select a from t1 where a in (1,3);
263
263
explain select a from t1 where a in (1,3);