diff options
Diffstat (limited to 'test/requirements.py')
| -rw-r--r-- | test/requirements.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/requirements.py b/test/requirements.py index 39a78dfa5..be85c1c0d 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -325,6 +325,12 @@ class DefaultRequirements(SuiteRequirements): "Backend does not support UPDATE..FROM") @property + def delete_from(self): + """Target must support DELETE FROM..FROM or DELETE..USING syntax""" + return only_on(['postgresql', 'mssql', 'mysql', 'sybase'], + "Backend does not support UPDATE..FROM") + + @property def update_where_target_in_subquery(self): """Target must support UPDATE where the same table is present in a subquery in the WHERE clause. |
