~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/range.test

  • Committer: Brian Aker
  • Date: 2008-10-18 23:46:20 UTC
  • mto: (492.3.21 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 530.
  • Revision ID: brian@gir.tangent.org-20081018234620-2iuc4ljnnee7x42t
Fixing more range mismatch

Show diffs side-by-side

added added

removed removed

Lines of Context:
953
953
create table t1 (a int);
954
954
insert into t1 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
955
955
 
956
 
create table t2 (a int, b int, filler char(100));
 
956
create table t2 (a int, b int, filler char(100)) ENGINE=myisam;
957
957
insert into t2 select A.a + 10 * (B.a + 10 * C.a), 10, 'filler' from t1 A,
958
958
t1 B, t1 C where A.a < 5;
959
959