User privileges error on server maria db
User: user1DB: db1
Error
15:00:46 DROP TRIGGER IF EXISTS audit_trigger Error Code: 1419. You do not have the SUPER privilege and binary logging is enabled (you might want to use the less safe log_bin_trust_function_creators variable) 0.266 sec
Script
DELIMITER $$
DROP TRIGGER IF EXISTS audit_trigger$$
CREATE TRIGGER `audit_trigger` BEFORE UPDATE ON `table` FOR EACH ROW
BEGIN
IF OLD.dateModify <> NEW.dateModify THEN
INSERT INTO table SELECT * FROM thistable where id = NEW.id ;
END IF ;
END $$
DELIMITER ;
Is it possible to give super privileges for user1 to only db1 i dont want this user to have access to other tables on the server