compiler warning (no return in non-void function)

This commit is contained in:
Sergei Golubchik 2015-11-10 16:57:44 +01:00
parent 29dd634a4c
commit da957310d0

View file

@ -25060,8 +25060,7 @@ bool JOIN::change_result(select_result *new_result, select_result *old_result)
DBUG_RETURN(true); /* purecov: inspected */
DBUG_RETURN(false);
}
else
DBUG_RETURN(result->change_result(new_result));
DBUG_RETURN(result->change_result(new_result));
}