~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-19 01:28:07 UTC
  • mto: (1222.1.2 staging)
  • mto: This revision was merged to the branch mainline in revision 1224.
  • Revision ID: brian@gaz-20091119012807-7bgv7ds8wmy4ce35
Remove last ofl HA_CREATE_INFO being involved with temporary tables (always
trust the proto now).

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);