For third party dialects, repaired a missing requirement for the
``SimpleUpdateDeleteTest`` suite test which was not checking for a working
"rowcount" function on the target dialect.
Fixes: #7919
Change-Id: I2bc68132131eb36c43b8dabec0fac86272e26df5
(cherry picked from commit
f3a65eb9033397fbf746fbf71df19ca9d1fce2f4)
--- /dev/null
+.. change::
+ :tags: bug, tests
+ :tickets: 7919
+
+ For third party dialects, repaired a missing requirement for the
+ ``SimpleUpdateDeleteTest`` suite test which was not checking for a working
+ "rowcount" function on the target dialect.
+
class SimpleUpdateDeleteTest(fixtures.TablesTest):
run_deletes = "each"
+ __requires__ = ("sane_rowcount",)
__backend__ = True
@classmethod