We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f58135 commit d4f434cCopy full SHA for d4f434c
1 file changed
tests/test_django.py
@@ -1,5 +1,6 @@
1
from unittest import SkipTest
2
3
+import django
4
from django.db import OperationalError, ProgrammingError
5
from django.db.models import Window
6
from django.db.models.functions import Rank
@@ -54,6 +55,8 @@ def test_union_with_first(self):
54
55
class WindowFunctions(TestCase):
56
57
def test_heterogeneous_filter_in_cte(self):
58
+ if django.VERSION < (4, 2):
59
+ raise SkipTest("feature added in Django 4.2")
60
from django_cte import With
61
cte = With(
62
Order.objects.annotate(
0 commit comments