summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2019-03-19 01:39:37 -0400
committerTim Graham <timograham@gmail.com>2019-03-21 18:48:41 -0400
commite595a713cc5ce66dfc5e22f85d671c06d842e99b (patch)
tree56a07ea21652460eca24208491166aae5d8e79db
parentfb3f034f1c63160c0ff13c609acd01c18be12f80 (diff)
Refs #29542, #30158 -- Enabled a HAVING subquery filter test on Oracle.
Now that subquery annotations aren't included in the GROUP BY unless explicitly grouped against, the test works on Oracle.
-rw-r--r--tests/annotations/tests.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/annotations/tests.py b/tests/annotations/tests.py
index 021f59d2d7..af13915312 100644
--- a/tests/annotations/tests.py
+++ b/tests/annotations/tests.py
@@ -586,7 +586,6 @@ class NonAggregateAnnotationTestCase(TestCase):
[{'jacob_name': 'Jacob Kaplan-Moss', 'james_name': 'James Bennett'}],
)
- @skipUnlessDBFeature('supports_subqueries_in_group_by')
def test_annotation_filter_with_subquery(self):
long_books_qs = Book.objects.filter(
publisher=OuterRef('pk'),