Renamed the allow_sliced_subqueries database feature to allow_sliced_subqueries_with_in.

After 0899d583bd this database feature is
false only on MySQL which doesn't support sliced subqueries only with
IN/ALL/ANY/SOME.
This commit is contained in:
Mariusz Felisiak 2018-02-07 08:27:47 +01:00 committed by GitHub
parent 47268242b0
commit 34b52f8572
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 3 deletions

View file

@ -2028,7 +2028,7 @@ class QuerysetOrderedTests(unittest.TestCase):
self.assertIs(qs.order_by('num_notes').ordered, True)
@skipUnlessDBFeature('allow_sliced_subqueries')
@skipUnlessDBFeature('allow_sliced_subqueries_with_in')
class SubqueryTests(TestCase):
@classmethod
def setUpTestData(cls):