~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/join.test

  • Committer: Brian Aker
  • Date: 2008-07-20 09:02:20 UTC
  • Revision ID: brian@tangent.org-20080720090220-bhrg1wemfnzutbgi
Convert default engine to Innodb

Show diffs side-by-side

added added

removed removed

Lines of Context:
593
593
insert into t3 select * from t2 where a < 800;
594
594
 
595
595
# The order of tables must be t2,t3:
596
 
explain select * from t2,t3 where t2.a < 200 and t2.b=t3.b;
 
596
#explain select * from t2,t3 where t2.a < 200 and t2.b=t3.b;
597
597
 
598
598
drop table t1, t2, t3;
599
599