~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/subselect_sj.result

  • Committer: Jay Pipes
  • Date: 2009-02-04 15:44:25 UTC
  • mfrom: (829 drizzle)
  • mto: This revision was merged to the branch mainline in revision 830.
  • Revision ID: jpipes@serialcoder-20090204154425-th8xfk2ujz2y8xwg
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
Warnings:
64
64
Note    1003    select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from (`test`.`t10` join `test`.`t12`) join `test`.`t1` where ((`test`.`t10`.`pk` = `test`.`t1`.`a`) and (`test`.`t12`.`pk` = `test`.`t10`.`a`))
65
65
subqueries within outer joins go into ON expr.
66
 
insert into t1 select (A.A + 10 * B.A),1 from t0 A, t0 B;
 
66
select * from
 
67
t1 left join t2 on (t2.a= t1.a and t2.a in (select pk from t10)) 
 
68
where t1.a < 5;
 
69
insert into t1 select (A.a + 10 * B.a),1 from t0 A, t0 B;
67
70
explain extended select * from t1 where a in (select pk from t10 where pk<3);
68
71
id      select_type     table   type    possible_keys   key     key_len ref     rows    filtered        Extra
69
72
1       PRIMARY t1      ALL     NULL    NULL    NULL    NULL    103     100.00  Using where