mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Replaced @no_oracle skips with DatabaseFeatures.allows_group_by_lob.
This commit is contained in:
parent
ad11f5b8c9
commit
755dbf39fc
6 changed files with 22 additions and 23 deletions
|
@ -355,7 +355,7 @@ class TestQuerying(TestCase):
|
|||
operator.itemgetter('key', 'count'),
|
||||
)
|
||||
|
||||
@skipIf(connection.vendor == 'oracle', "Oracle doesn't support grouping by LOBs, see #24096.")
|
||||
@skipUnlessDBFeature('allows_group_by_lob')
|
||||
def test_ordering_grouping_by_count(self):
|
||||
qs = NullableJSONModel.objects.filter(
|
||||
value__isnull=False,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue