mysql创建函数报: you *might* want to use the less safe log_bin_trust_function_creators variable错误:
添加下面这行,问题解决
-- 创建函数数必须执行下面这行,不然无法创建
SET GLOBAL log_bin_trust_function_creators = 1;
函数创建成功
mysql创建函数报: you *might* want to use the less safe log_bin_trust_function_creators variable错误:
添加下面这行,问题解决
-- 创建函数数必须执行下面这行,不然无法创建
SET GLOBAL log_bin_trust_function_creators = 1;
函数创建成功