Fixed #26908 -- Fixed crash with jsonfield__key__isnull lookup.
This commit is contained in:
parent
7b6dccc82f
commit
2eb7d6e6d4
|
@ -106,7 +106,7 @@ class KeyTransform(Transform):
|
||||||
lookup = "'%s'" % self.key_name
|
lookup = "'%s'" % self.key_name
|
||||||
else:
|
else:
|
||||||
lookup = "%s" % self.key_name
|
lookup = "%s" % self.key_name
|
||||||
return "%s -> %s" % (lhs, lookup), params
|
return "(%s -> %s)" % (lhs, lookup), params
|
||||||
|
|
||||||
|
|
||||||
class KeyTransformFactory(object):
|
class KeyTransformFactory(object):
|
||||||
|
|
|
@ -156,6 +156,17 @@ class TestQuerying(TestCase):
|
||||||
[self.objs[0]]
|
[self.objs[0]]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def test_isnull_key(self):
|
||||||
|
# key__isnull works the same as has_key='key'.
|
||||||
|
self.assertSequenceEqual(
|
||||||
|
JSONModel.objects.filter(field__a__isnull=True),
|
||||||
|
self.objs[:7] + self.objs[9:]
|
||||||
|
)
|
||||||
|
self.assertSequenceEqual(
|
||||||
|
JSONModel.objects.filter(field__a__isnull=False),
|
||||||
|
[self.objs[7], self.objs[8]]
|
||||||
|
)
|
||||||
|
|
||||||
def test_contains(self):
|
def test_contains(self):
|
||||||
self.assertSequenceEqual(
|
self.assertSequenceEqual(
|
||||||
JSONModel.objects.filter(field__contains={'a': 'b'}),
|
JSONModel.objects.filter(field__contains={'a': 'b'}),
|
||||||
|
|
Loading…
Reference in New Issue