- Notifications
You must be signed in to change notification settings - Fork28
Commitb2c51e6
committed
Fix another semijoin-ordering bug. We already knew that we couldn't
reorder a semijoin into or out of the righthand side of another semijoin,but actually it doesn't work to reorder it into or out of the righthandside of a left or antijoin, either. Per bug #4906 from Mathieu Fenniak.This was sloppy thinking on my part. This identity does work:( A left join B on (Pab) ) semijoin C on (Pac)==( A semijoin C on (Pac) ) left join B on (Pab)but I failed to see that that doesn't mean this does:( A left join B on (Pab) ) semijoin C on (Pbc)!=A left join ( B semijoin C on (Pbc) ) on (Pab)1 parent4e03b82 commitb2c51e6
2 files changed
+11
-10
lines changedLines changed: 5 additions & 5 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| |||
214 | 214 |
| |
215 | 215 |
| |
216 | 216 |
| |
217 |
| - | |
218 |
| - | |
219 |
| - | |
220 |
| - | |
| 217 | + | |
| 218 | + | |
| 219 | + | |
| 220 | + | |
221 | 221 |
| |
222 | 222 |
| |
223 | 223 |
| |
|
Lines changed: 6 additions & 5 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
8 | 8 |
| |
9 | 9 |
| |
10 | 10 |
| |
11 |
| - | |
| 11 | + | |
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
| |||
630 | 630 |
| |
631 | 631 |
| |
632 | 632 |
| |
633 |
| - | |
634 |
| - | |
| 633 | + | |
| 634 | + | |
635 | 635 |
| |
636 | 636 |
| |
637 | 637 |
| |
638 | 638 |
| |
639 | 639 |
| |
640 | 640 |
| |
641 | 641 |
| |
642 |
| - | |
| 642 | + | |
643 | 643 |
| |
644 | 644 |
| |
645 | 645 |
| |
| |||
655 | 655 |
| |
656 | 656 |
| |
657 | 657 |
| |
658 |
| - | |
| 658 | + | |
659 | 659 |
| |
660 | 660 |
| |
661 | 661 |
| |
| |||
672 | 672 |
| |
673 | 673 |
| |
674 | 674 |
| |
| 675 | + | |
675 | 676 |
| |
676 | 677 |
| |
677 | 678 |
| |
|
0 commit comments
Comments
(0)