v.24.7Bug Fix
Better handling of join conditions with IS NULL checks
Better handling of join conditions involvingIS NULLchecks (for exampleON (a = b AND (a IS NOT NULL) AND (b IS NOT NULL) ) OR ( (a IS NULL) AND (b IS NULL) )is rewritten toON a <=> b), fix incorrect optimization when condition other thenIS NULLare present. #65835 (vdimir).