mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
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:
parent
47268242b0
commit
34b52f8572
4 changed files with 7 additions and 3 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue