~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/heap.result

  • Committer: Jay Pipes
  • Date: 2009-08-19 21:45:49 UTC
  • mfrom: (1118 staging)
  • mto: This revision was merged to the branch mainline in revision 1119.
  • Revision ID: jpipes@serialcoder-20090819214549-707ixisg44uwhu5r
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
drop table if exists t1,t2,t3;
2
 
create temporary table t1 (a int not null,b int not null, primary key (a)) engine=heap comment="testing heaps" avg_row_length=100 min_rows=1 max_rows=100;
 
2
create temporary table t1 (a int not null,b int not null, primary key (a)) engine=heap comment="testing heaps";
3
3
insert into t1 values(1,1),(2,2),(3,3),(4,4);
4
4
delete from t1 where a=1 or a=0;
5
5
show keys from t1;