CODE
# Najprostsza funkcja
delimiter //
create function dodaj_podatek (cena float) returns float
return cena*1.22;
//
delimiter ;
delimiter //
create function dodaj_podatek (cena float) returns float
return cena*1.22;
//
delimiter ;
Po czym otrzymuje ERROR 1418:
CODE
This function has none of DETERMINISTIC, NO SQL, OR READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
Zwracam się o pomoc co jest przyczyna. Wersja MySQL 5.1.36.
Pozdrawiam