MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / row_triggers

Method row_triggers

test/requirements.py:495–505  ·  view source on GitHub ↗

Target must support standard statement-running EACH ROW triggers.

(self)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 3

skip_ifFunction · 0.90
no_supportFunction · 0.85
excludeFunction · 0.70

Tested by

no test coverage detected