v.25.7Improvement
Improve CROSS JOIN
Improve CROSS JOIN by returning false from HashJoin::needUsedFlagsForPerRightTableRow. #82379 (lgbo).Why it matters
This feature enhances the efficiency of CROSS JOIN operations by modifying theHashJoin::needUsedFlagsForPerRightTableRow function to return false, thus avoiding the overhead of managing used flags for each row in the right table. This reduces computational complexity and improves query execution speed for CROSS JOINs.