~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/subselect_sj.test

  • Committer: Brian Aker
  • Date: 2009-02-21 00:18:15 UTC
  • Revision ID: brian@tangent.org-20090221001815-x20e8h71e984lvs1
Completion (?) of uint conversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
where t1.a < 5;
82
82
 
83
83
# Try I2O orders
84
 
insert into t1 select (A.a + 10 * B.a),1 from t0 A CROSS JOIN t0 B;
 
84
insert into t1 select (A.a + 10 * B.a),1 from t0 A, t0 B;
85
85
explain extended select * from t1 where a in (select pk from t10 where pk<3);
86
86
 
87
87
drop table t0, t1;
88
88
drop table t10, t11, t12;
89
 
drop table t2;