1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

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));
}