mysql サーバーを再起動すると、値が自動的にデフォルト値に変更されます。
mysql> show global variables like 'log_bin_trust_function_creators';
+---------------------------------+-------+
| Variable_name | Value |
+---------------------------------+-------+
| log_bin_trust_function_creators | OFF |
+---------------------------------+-------+
1 row in set (0.00 sec)
mysql> SET GLOBAL log_bin_trust_function_creators = ON;
Query OK, 0 rows affected (0.00 sec)
この機能は何としてもONにしたい。
私の値をデフォルト値にする方法はありますか?