The "owner" (database or user in which TEMP is defined) does not have EXECUTE PROCEDURE right for TEMP1.
Rights of the user are checked when invoking TEMP, but because TEMP does not specify SQL SECURITY (and therefore defaults to DEFINER), rights of the owner are checked for the nested CALL TEMP1();
The "owner" (database or user in which TEMP is defined) does not have EXECUTE PROCEDURE right for TEMP1.
Rights of the user are checked when invoking TEMP, but because TEMP does not specify SQL SECURITY (and therefore defaults to DEFINER), rights of the owner are checked for the nested CALL TEMP1();