@@ -245,6 +245,9 @@ def django_test_expected_failures(self):
245
245
"expressions_case.tests.CaseExpressionTests.test_order_by_conditional_implicit" ,
246
246
# annotate().filter().count() gives incorrect results.
247
247
"db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_year_exact_lookup" ,
248
+ "model_fields.test_jsonfield.TestQuerying.test_nested_key_transform_on_subquery" ,
249
+ "model_fields.test_jsonfield.TestQuerying.test_ordering_grouping_by_count" ,
250
+ "model_fields.test_jsonfield.TestQuerying.test_obj_subquery_lookup" ,
248
251
},
249
252
"Count doesn't work in QuerySet.annotate()" : {
250
253
"annotations.tests.AliasTests.test_alias_annotate_with_aggregation" ,
@@ -339,6 +342,10 @@ def django_test_expected_failures(self):
339
342
"update.tests.SimpleTest.test_empty_update_with_inheritance" ,
340
343
"update.tests.SimpleTest.test_foreign_key_update_with_id" ,
341
344
"update.tests.SimpleTest.test_nonempty_update_with_inheritance" ,
345
+ "model_fields.test_jsonfield.TestQuerying.test_ordering_grouping_by_key_transform" ,
346
+ "model_fields.test_jsonfield.TestQuerying.test_ordering_by_transform" ,
347
+ "model_fields.test_jsonfield.TestQuerying.test_order_grouping_custom_decoder" ,
348
+ "model_fields.test_jsonfield.TestQuerying.test_join_key_transform_annotation_expression" ,
342
349
},
343
350
"Test inspects query for SQL" : {
344
351
"lookup.tests.LookupTests.test_in_ignore_none" ,
@@ -353,6 +360,9 @@ def django_test_expected_failures(self):
353
360
"timezones.tests.NewDatabaseTests.test_cursor_execute_returns_naive_datetime" ,
354
361
"timezones.tests.NewDatabaseTests.test_cursor_explicit_time_zone" ,
355
362
"timezones.tests.NewDatabaseTests.test_raw_sql" ,
363
+ "model_fields.test_jsonfield.TestQuerying.test_key_transform_raw_expression" ,
364
+ "model_fields.test_jsonfield.TestQuerying.test_key_sql_injection_escape" ,
365
+ "model_fields.test_jsonfield.TestQuerying.test_nested_key_transform_raw_expression" ,
356
366
},
357
367
"Bilateral transform not implemented." : {
358
368
"db_functions.tests.FunctionTests.test_func_transform_bilateral" ,
@@ -410,7 +420,8 @@ def django_test_expected_failures(self):
410
420
},
411
421
"Mongodb's Null behaviour is different from sql's" : {
412
422
"model_fields.test_jsonfield.TestQuerying.test_none_key_and_exact_lookup" ,
413
- # "model_fields.test_jsonfield.TestQuerying.test_isnull_key",
423
+ "model_fields.test_jsonfield.TestSaveLoad.test_json_null_different_from_sql_null" ,
424
+ "model_fields.test_jsonfield.TestQuerying.test_none_key" ,
414
425
},
415
426
"Pipeline filtering" : {"model_fields.test_jsonfield.TestQuerying.test_icontains" },
416
427
}
0 commit comments