MySQL报 you *might* want to use the less safe log_bin_trust_function_creators variable错误解决方法
解决方法:执行SET GLOBAL log_bin_trust_function_creators = 1;具体说明如下:在打开日志文件情况下执行以前建立的 自定义函数报错详细分析如下:1 .调用自定义函数 mysql> select sp_function_dbdh_three(); #以前自定义的函数2. 报错信息: ERROR 1418 (HY000): This function has none of DETERMINISTIC, NO SQL, ...