diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-09-16 11:47:02 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-09-16 11:47:48 +0200 |
| commit | 5a03e14deb55c381b2908fdeff884137ca8e43a4 (patch) | |
| tree | a473499589b22be99ca0796b1dbe58f37201dd4c /tests/annotations | |
| parent | 1afc9b31bb4f3f5f921060ca42d76aed5edda6e3 (diff) | |
[3.1.x] Refs #32007 -- Skipped test_q_expression_annotation_with_aggregation on Oracle.
Backport of 3a9f192b131f7a9b0fe5783c684b23015fa67cc8 from master
Diffstat (limited to 'tests/annotations')
| -rw-r--r-- | tests/annotations/tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/annotations/tests.py b/tests/annotations/tests.py index e42a04bb60..484061f567 100644 --- a/tests/annotations/tests.py +++ b/tests/annotations/tests.py @@ -186,6 +186,7 @@ class NonAggregateAnnotationTestCase(TestCase): self.assertEqual(book.combined, 13410.0) self.assertEqual(book.rating_count, 1) + @skipUnlessDBFeature('supports_boolean_expr_in_select_clause') def test_q_expression_annotation_with_aggregation(self): book = Book.objects.filter(isbn='159059725').annotate( isnull_pubdate=ExpressionWrapper( |
