[MDEV-28215] Incorrect Join Execution When Controlling BNLH and BKAH Join Algorithms Created: 2022-04-02 Updated: 2023-04-27 |
|
| Status: | Confirmed |
| Project: | MariaDB Server |
| Component/s: | Optimizer |
| Affects Version/s: | 10.8.2, 10.2, 10.3, 10.4, 10.5, 10.6, 10.7, 10.8 |
| Fix Version/s: | 10.4, 10.5, 10.6 |
| Type: | Bug | Priority: | Major |
| Reporter: | Xiu Tang | Assignee: | Sergei Petrunia |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Description |
|
CREATE TABLE `t1` ( CREATE TABLE `t2` ( mysql> SET SESSION join_cache_level = 4; mysql> SELECT t2.c0 FROM t2 RIGHT OUTER JOIN t1 ON t1.c0 = t2.c0;
------
------ mysql> SET optimizer_switch='join_cache_hashed=off'; mysql> SELECT t2.c0 FROM t2 RIGHT OUTER JOIN t1 ON t1.c0 = t2.c0;
------
------ |
| Comments |
| Comment by Alice Sherepa [ 2022-04-07 ] |
|
Thank you for the report! |