5.1.0-alpha.4
Pre-release
Pre-release
Warning
When binary logging is on and the connecting user lacks SUPER, trigger DDL is refused unless the global log_bin_trust_function_creators flag is 1. Run this on your MariaDB as an admin/root user (not the romm app user):
SET GLOBAL log_bin_trust_function_creators = 1;SET GLOBAL is lost on DB restart. Either add to your MariaDB my.cnf under [mysqld]:
log_bin_trust_function_creators = 1Or grant the app user the privilege (MariaDB 10.5+):
`GRANT BINLOG ADMIN ON *.* TO 'romm'@'%';` -- or: GRANT SUPER ON *.* TO 'romm'@'%';What's Changed
Full Changelog: 5.1.0-alpha.3...5.1.0-alpha.4