summaryrefslogtreecommitdiff
path: root/test/dialect/mysql/test_for_update.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/dialect/mysql/test_for_update.py')
-rw-r--r--test/dialect/mysql/test_for_update.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dialect/mysql/test_for_update.py b/test/dialect/mysql/test_for_update.py
index 4fdf9541a..a99435c4a 100644
--- a/test/dialect/mysql/test_for_update.py
+++ b/test/dialect/mysql/test_for_update.py
@@ -409,14 +409,14 @@ class SkipLockedTest(fixtures.TablesTest):
Column("value", Integer),
)
- @testing.only_on("mysql>=8")
+ @testing.only_on(["mysql>=8", "mariadb>=10.6"])
def test_skip_locked(self, connection):
stuff = self.tables.stuff
stmt = stuff.select().with_for_update(skip_locked=True)
connection.execute(stmt).fetchall()
- @testing.only_on(["mysql<8", "mariadb"])
+ @testing.only_on(["mysql<8", "mariadb<10.6"])
def test_unsupported_skip_locked(self, connection):
stuff = self.tables.stuff
stmt = stuff.select().with_for_update(skip_locked=True)