diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2022-08-05 19:29:26 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2022-08-05 19:29:26 +0000 |
| commit | f08576274417bb1a836c072ff240bd5ad2ab40b7 (patch) | |
| tree | a10d83d982c17acba41f357d8fb82f16a46b3dfc /test/sql | |
| parent | 8cb6fbfb6589078484f29059dab6bd3e3646f938 (diff) | |
| parent | 9f992e42189746a7aff497abcf6ea9c08ab79e97 (diff) | |
| download | sqlalchemy-f08576274417bb1a836c072ff240bd5ad2ab40b7.tar.gz | |
Merge "translate joined inheritance cols in UPDATE/DELETE" into main
Diffstat (limited to 'test/sql')
| -rw-r--r-- | test/sql/test_delete.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/sql/test_delete.py b/test/sql/test_delete.py index 45ead811f..f98e7297d 100644 --- a/test/sql/test_delete.py +++ b/test/sql/test_delete.py @@ -307,7 +307,7 @@ class DeleteFromRoundTripTest(fixtures.TablesTest): ), ) - @testing.requires.delete_from + @testing.requires.delete_using def test_exec_two_table(self, connection): users, addresses = self.tables.users, self.tables.addresses dingalings = self.tables.dingalings @@ -326,7 +326,7 @@ class DeleteFromRoundTripTest(fixtures.TablesTest): ] self._assert_table(connection, addresses, expected) - @testing.requires.delete_from + @testing.requires.delete_using def test_exec_three_table(self, connection): users = self.tables.users addresses = self.tables.addresses @@ -342,7 +342,7 @@ class DeleteFromRoundTripTest(fixtures.TablesTest): expected = [(2, 5, "ding 2/5")] self._assert_table(connection, dingalings, expected) - @testing.requires.delete_from + @testing.requires.delete_using def test_exec_two_table_plus_alias(self, connection): users, addresses = self.tables.users, self.tables.addresses dingalings = self.tables.dingalings @@ -359,7 +359,7 @@ class DeleteFromRoundTripTest(fixtures.TablesTest): expected = [(1, 7, "x", "jack@bean.com"), (5, 9, "x", "fred@fred.com")] self._assert_table(connection, addresses, expected) - @testing.requires.delete_from + @testing.requires.delete_using def test_exec_alias_plus_table(self, connection): users, addresses = self.tables.users, self.tables.addresses dingalings = self.tables.dingalings |
