Question :
Mixed replication is enabled.
MySQL master has a table Products that has triggers on update and delete. On slave database we have different trigger on same table on update and delete.
Master database trigger executing properly but slave db trigger not executing. Is there any way we can achieve this. Slave db trigger we dont want on master db.
Answer :
There are many reason when mixed binary log format the statement-based replication is converted to row-based replication.
Here, I think it matches to your case :
Hope this resolves your query.