(self)
| 98 | self.assertNotIn("::varchar)::varchar", sql) |
| 99 | |
| 100 | def test_order_by_key(self): |
| 101 | qs = Author.objects.annotate(arr=JSONArray(F("alias"))).order_by("arr__0") |
| 102 | self.assertQuerySetEqual(qs, Author.objects.order_by("alias")) |
| 103 | |
| 104 | def test_order_by_nested_key(self): |
| 105 | qs = Author.objects.annotate(arr=JSONArray(JSONArray(F("alias")))).order_by( |
nothing calls this directly
no test coverage detected