~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/subselect_sj.test

  • Committer: Brian Aker
  • Date: 2011-01-12 06:45:23 UTC
  • mto: (2073.1.4 catalogs)
  • mto: This revision was merged to the branch mainline in revision 2080.
  • Revision ID: brian@tangent.org-20110112064523-rqhptaqbph22qmj1
RemoveĀ customĀ error.

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;