v.19.6Improvements
Disable Push-down to Right Table in Left Join, Left Table in Right Join, and Both Tables in Full Join
Disable push-down to right table in left join, left table in right join, and both tables in full join. This fixes wrong JOIN results in some cases. #4846 (Ivan)
Why it matters
This change addresses incorrect query results caused by push-down optimizations during JOIN operations. By disabling push-down on the right table inLEFT JOIN, the left table in RIGHT JOIN, and both tables in FULL JOIN, the feature improves query correctness and reliability.