~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/join.result

  • Committer: lbieber
  • Date: 2010-08-23 22:45:16 UTC
  • mfrom: (1727.2.1 staging)
  • Revision ID: lbieber@orisndriz03-20100823224516-k12j5r4znqnznr9d
Merge Vijay - bug 621866 - Changed --transaction-log.sync-method to --transaction-log.flush-frequency
Merge Lee - bug 622005 updateing test results that need to sorted by adding --sorted_result - 
Merge Andrew - bug #617537 re-connect connectionID is wrong 
Merge Andrew - bug #617534 incorrect error when reconnecting

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