Can anyone explain to me why this, pasted into a Query tab, will run without errors, but no function is created?
CREATE FUNCTION testF(sText TEXT)
RETURNS TEXT
DETERMINISTIC
BEGIN
RETURN 'ok';
END
DELIMITER ;
Trying to create functions within the actual function editor never seems to work - it just throws up syntax errors ...:(
Any clues about creating functions gratefully received!
I am using an up-to-date Heidi, though my MySQL version is old: v 5.6.15-log
Thanks