July 14, 2021 . 1 MIN READ
There are two ways to fix this:
SET GLOBAL log_bin_trust_function_creators = 1;
log_bin_trust_function_creators = 1;
The setting relaxes the checking for non-deterministic functions. Non-deterministic functions are functions that modify data (i.e. have update, insert or delete statement(s)). For more info, see here.
Please note, if binary logging is NOT enabled, this setting does not apply.
Binary Logging of Stored Programs