Skip to content

Commit da95731

Browse files
committed
compiler warning (no return in non-void function)
1 parent 29dd634 commit da95731

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

sql/sql_select.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25060,8 +25060,7 @@ bool JOIN::change_result(select_result *new_result, select_result *old_result)
2506025060
DBUG_RETURN(true); /* purecov: inspected */
2506125061
DBUG_RETURN(false);
2506225062
}
25063-
else
25064-
DBUG_RETURN(result->change_result(new_result));
25063+
DBUG_RETURN(result->change_result(new_result));
2506525064
}
2506625065

2506725066

0 commit comments

Comments
 (0)