Trigger Limitations
The following restrictions apply to triggers.
All of the restrictions listed in Stored Routine Limitations.
All of the restrictions listed in Stored Function Limitations.
Triggers are always executed for each row. MariaDB does not support the standard
FOR EACH STATEMENToption.Triggers cannot operate on any tables in the mysql,
information_schemaorperformance_schemadatabase.Cannot return a result set.
Triggers are not activated by foreign key actions.
If a trigger is loaded into cache, it is not automatically reloaded when the table metadata changes. In this case a trigger can operate using the outdated metadata.
By default, with row-based replication, triggers run on the master, and the effects of their executions are replicated to the slaves. It is possible to run triggers on slaves. See Running triggers on the slave for Row-based events.
See Also
This page is licensed: CC BY-SA / Gnu FDL
Last updated
Was this helpful?

