~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to tests/r/join.result

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-10-02 14:17:48 UTC
  • mfrom: (1.1.1 upstream)
  • mto: (2.1.17 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20101002141748-m6vbfbfjhrw1153e
Tags: 2010.09.1802-1
* New upstream release.
* Removed pid-file argument hack.
* Updated GPL-2 address to be new address.
* Directly copy in drizzledump.1 since debian doesn't have sphinx 1.0 yet.
* Link to jquery from libjs-jquery. Add it as a depend.
* Add drizzled.8 symlink to the install files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
599
599
3       1       2       2
600
600
select * from (t1 cross join t2) join (t3 cross join t4) on (a < y and t2.b < t3.c);
601
601
c       b       a       b       b       c       y       c
 
602
10      1       2       1       1       10      11      3
602
603
10      1       2       1       1       3       11      3
603
 
10      1       2       1       1       10      11      3
 
604
3       1       2       1       1       10      11      3
604
605
3       1       2       1       1       3       11      3
605
 
3       1       2       1       1       10      11      3
 
606
3       2       2       1       1       10      11      3
606
607
3       2       2       1       1       3       11      3
607
 
3       2       2       1       1       10      11      3
608
608
select * from (t1, t2) join (t3, t4) on (a < y and t2.b < t3.c);
609
609
c       b       a       b       b       c       y       c
 
610
10      1       2       1       1       10      11      3
610
611
10      1       2       1       1       3       11      3
611
 
10      1       2       1       1       10      11      3
 
612
3       1       2       1       1       10      11      3
612
613
3       1       2       1       1       3       11      3
613
 
3       1       2       1       1       10      11      3
 
614
3       2       2       1       1       10      11      3
614
615
3       2       2       1       1       3       11      3
615
 
3       2       2       1       1       10      11      3
616
616
select * from (t1 natural join t2) join (t3 natural join t4) on a = y;
617
617
b       c       a       c       b       y
618
618
1       10      2       3       1       2
619
619
1       3       2       3       1       2
620
620
select * from ((t3 join (t1 join t2 on c > a) on t3.b < t2.a) join t4 on y > t1.c) join t5 on z = t1.b + 3;
621
621
b       c       c       b       a       b       y       c       y       z
 
622
1       10      10      1       2       1       11      3       11      4
 
623
1       10      3       1       2       1       11      3       11      4
622
624
1       3       10      1       2       1       11      3       11      4
623
 
1       10      10      1       2       1       11      3       11      4
624
625
1       3       3       1       2       1       11      3       11      4
625
 
1       10      3       1       2       1       11      3       11      4
626
626
select * from t1 natural join t2 where t1.b > 0;
627
627
b       c       a
628
628
1       10      2