If you go throw a function into Oracle, and it's wrong, e.g.
CREATE OR REPLACE FUNCTION Banana IS -- Oops, no return!
BEGIN
RETURN SUBSTUR('Banana',2,5); -- Oops, misspelled!
END;
You will get no warnings about this in most tools until it comes…
more »