I'm creating this trigger
DELIMITER //
CREATE TRIGGER reposta3A
AFTER INSERT ON utilizacao_veiculo
FOR EACH ROW
BEGIN
SELECT emite_mensagem();
END//
DELIMITER ;
but when I run the show triggers command; it does not appear as if it was created