今天在部署一个测试环境的时候发现mysql结构同步时函数操作失败,看了一下问题:
you *might* want to use the less safe log_bin_trust_function_creators variab
这时候修改一下配置的 log_bin_trust_function_creators 即可,我直接在终端执行:
SET GLOBAL log_bin_trust_function_creators = 1;
后发现创建函数正常了。
今天在部署一个测试环境的时候发现mysql结构同步时函数操作失败,看了一下问题:
you *might* want to use the less safe log_bin_trust_function_creators variab
这时候修改一下配置的 log_bin_trust_function_creators 即可,我直接在终端执行:
SET GLOBAL log_bin_trust_function_creators = 1;
后发现创建函数正常了。