diff options
Diffstat (limited to 'test/dialect/mysql/test_compiler.py')
-rw-r--r-- | test/dialect/mysql/test_compiler.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/dialect/mysql/test_compiler.py b/test/dialect/mysql/test_compiler.py index 80fc65a0b..b222431eb 100644 --- a/test/dialect/mysql/test_compiler.py +++ b/test/dialect/mysql/test_compiler.py @@ -352,7 +352,6 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): self.assert_compile(expr, "concat('x', 'y')", literal_binds=True) def test_mariadb_for_update(self): - table1 = table( "mytable", column("myid"), column("name"), column("description") ) @@ -365,16 +364,6 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): dialect="mariadb", ) - self.assert_compile( - table1.select(table1.c.myid == 7).with_for_update( - skip_locked=True - ), - "SELECT mytable.myid, mytable.name, mytable.description " - "FROM mytable WHERE mytable.myid = %s " - "FOR UPDATE", - dialect="mariadb", - ) - def test_delete_extra_froms(self): t1 = table("t1", column("c1")) t2 = table("t2", column("c1")) |