Target must support standard statement-running EACH ROW triggers.
(self)
| 493 | |
| 494 | @property |
| 495 | def row_triggers(self): |
| 496 | """Target must support standard statement-running EACH ROW triggers.""" |
| 497 | |
| 498 | return skip_if( |
| 499 | [ |
| 500 | # no access to same table |
| 501 | no_support("mysql", "requires SUPER priv"), |
| 502 | no_support("mariadb", "requires SUPER priv"), |
| 503 | exclude("mysql", "<", (5, 0, 10), "not supported by database"), |
| 504 | ] |
| 505 | ) |
| 506 | |
| 507 | @property |
| 508 | def sequences_as_server_defaults(self): |
nothing calls this directly
no test coverage detected