mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #30704 -- Fixed crash of JSONField nested key and index transforms on expressions with params.
Thanks Florian Apolloner for the report and helping with tests.
This commit is contained in:
parent
efa1908f66
commit
c19ad2da4b
2 changed files with 21 additions and 2 deletions
|
@ -6,7 +6,9 @@ from decimal import Decimal
|
|||
from django.core import checks, exceptions, serializers
|
||||
from django.core.serializers.json import DjangoJSONEncoder
|
||||
from django.db import connection
|
||||
from django.db.models import Count, Q
|
||||
from django.db.models import Count, F, Q
|
||||
from django.db.models.expressions import RawSQL
|
||||
from django.db.models.functions import Cast
|
||||
from django.forms import CharField, Form, widgets
|
||||
from django.test.utils import CaptureQueriesContext, isolate_apps
|
||||
from django.utils.html import escape
|
||||
|
@ -186,6 +188,23 @@ class TestQuerying(PostgreSQLTestCase):
|
|||
operator.itemgetter('key', 'count'),
|
||||
)
|
||||
|
||||
def test_nested_key_transform_raw_expression(self):
|
||||
expr = RawSQL('%s::jsonb', ['{"x": {"y": "bar"}}'])
|
||||
self.assertSequenceEqual(
|
||||
JSONModel.objects.filter(field__foo=KeyTransform('y', KeyTransform('x', expr))),
|
||||
[self.objs[-1]],
|
||||
)
|
||||
|
||||
def test_nested_key_transform_expression(self):
|
||||
self.assertSequenceEqual(
|
||||
JSONModel.objects.filter(field__d__0__isnull=False).annotate(
|
||||
key=KeyTransform('d', 'field'),
|
||||
chain=KeyTransform('f', KeyTransform('1', 'key')),
|
||||
expr=KeyTransform('f', KeyTransform('1', Cast('key', JSONField()))),
|
||||
).filter(chain=F('expr')),
|
||||
[self.objs[8]],
|
||||
)
|
||||
|
||||
def test_deep_values(self):
|
||||
query = JSONModel.objects.values_list('field__k__l')
|
||||
self.assertSequenceEqual(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue