先看下,log_bin_trust_function_creators有没有开启
mysql>  show variables like '%func%';
+---------------------------------+-------+
| Variable_name                   | Value |
+---------------------------------+-------+
| log_bin_trust_function_creators | OFF   |
+---------------------------------+-------+
1 row in set (0.00 sec)


如果Value处值为OFF,则需将其开启。
mysql> set global log_bin_trust_function_creators=1;
Query OK, 0 rows affected (0.00 sec)


mysql>  show variables like '%func%';
+---------------------------------+-------+
| Variable_name                   | Value |
+---------------------------------+-------+
| log_bin_trust_function_creators | ON    |
+---------------------------------+-------+
1 row in set (0.00 sec)
mysql>

相关文章:

  • 2021-12-07
  • 2022-12-23
  • 2022-12-23
  • 2021-12-18
  • 2022-12-23
  • 2022-12-23
  • 2021-09-04
  • 2021-07-24
猜你喜欢
  • 2021-05-28
  • 2021-12-18
  • 2021-12-18
  • 2022-12-23
  • 2021-11-20
  • 2021-10-07
  • 2021-04-14
相关资源
相似解决方案