en el proceso de test de la migración, al crear la DB de PARSER genera un error al crear la función
CREATE DEFINER=root@localhost FUNCTION SPLIT_STR( s MEDIUMTEXT , del CHAR(1) , i INT) RETURNS text CHARSET utf8
DETERMINISTIC
BEGIN
generando un error
1418: This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you might want to use the less safe log_bin_trust_function_creators variable)
solución:
https://stackoverflow.com/questions/26015160/deterministic-no-sql-or-reads-sql-data-in-its-declaration-and-binary-logging-i
#sudo nano my.cnf

hay que tenerlo en cuenta para la documentación.
en el proceso de test de la migración, al crear la DB de PARSER genera un error al crear la función
CREATE DEFINER=
root@localhostFUNCTIONSPLIT_STR( s MEDIUMTEXT , del CHAR(1) , i INT) RETURNS text CHARSET utf8DETERMINISTIC
BEGIN
generando un error
1418: This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you might want to use the less safe log_bin_trust_function_creators variable)
solución:

https://stackoverflow.com/questions/26015160/deterministic-no-sql-or-reads-sql-data-in-its-declaration-and-binary-logging-i
#sudo nano my.cnf
hay que tenerlo en cuenta para la documentación.