database
mysql function 생성 오류
우주정복☆
2018. 1. 26. 17:23
fucntion 생성시 오류발생 -
ERROR 1418 (HY000): 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)
my.cnf 파일 mysqld 설정 확인
--log-bin-trust-function-creators=1
설정파일 수정하면 재시작 해야하니 명령어 실행
mysql>SET GLOBAL log_bin_trust_function_creators = 1;
//1=on을 의미하고 0은 off를 의미한다