@@ -251,6 +251,9 @@ def django_test_expected_failures(self):
251
251
"expressions_case.tests.CaseExpressionTests.test_order_by_conditional_implicit" ,
252
252
# annotate().filter().count() gives incorrect results.
253
253
"db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_year_exact_lookup" ,
254
+ "model_fields.test_jsonfield.TestQuerying.test_nested_key_transform_on_subquery" ,
255
+ "model_fields.test_jsonfield.TestQuerying.test_ordering_grouping_by_count" ,
256
+ "model_fields.test_jsonfield.TestQuerying.test_obj_subquery_lookup" ,
254
257
},
255
258
"Count doesn't work in QuerySet.annotate()" : {
256
259
"annotations.tests.AliasTests.test_alias_annotate_with_aggregation" ,
@@ -345,6 +348,10 @@ def django_test_expected_failures(self):
345
348
"update.tests.SimpleTest.test_empty_update_with_inheritance" ,
346
349
"update.tests.SimpleTest.test_foreign_key_update_with_id" ,
347
350
"update.tests.SimpleTest.test_nonempty_update_with_inheritance" ,
351
+ "model_fields.test_jsonfield.TestQuerying.test_ordering_grouping_by_key_transform" ,
352
+ "model_fields.test_jsonfield.TestQuerying.test_ordering_by_transform" ,
353
+ "model_fields.test_jsonfield.TestQuerying.test_order_grouping_custom_decoder" ,
354
+ "model_fields.test_jsonfield.TestQuerying.test_join_key_transform_annotation_expression" ,
348
355
},
349
356
"Test inspects query for SQL" : {
350
357
"lookup.tests.LookupTests.test_in_ignore_none" ,
@@ -359,6 +366,9 @@ def django_test_expected_failures(self):
359
366
"timezones.tests.NewDatabaseTests.test_cursor_execute_returns_naive_datetime" ,
360
367
"timezones.tests.NewDatabaseTests.test_cursor_explicit_time_zone" ,
361
368
"timezones.tests.NewDatabaseTests.test_raw_sql" ,
369
+ "model_fields.test_jsonfield.TestQuerying.test_key_transform_raw_expression" ,
370
+ "model_fields.test_jsonfield.TestQuerying.test_key_sql_injection_escape" ,
371
+ "model_fields.test_jsonfield.TestQuerying.test_nested_key_transform_raw_expression" ,
362
372
},
363
373
"Bilateral transform not implemented." : {
364
374
"db_functions.tests.FunctionTests.test_func_transform_bilateral" ,
@@ -416,7 +426,8 @@ def django_test_expected_failures(self):
416
426
},
417
427
"Mongodb's Null behaviour is different from sql's" : {
418
428
"model_fields.test_jsonfield.TestQuerying.test_none_key_and_exact_lookup" ,
419
- # "model_fields.test_jsonfield.TestQuerying.test_isnull_key",
429
+ "model_fields.test_jsonfield.TestSaveLoad.test_json_null_different_from_sql_null" ,
430
+ "model_fields.test_jsonfield.TestQuerying.test_none_key" ,
420
431
},
421
432
"Pipeline filtering" : {"model_fields.test_jsonfield.TestQuerying.test_icontains" },
422
433
}
0 commit comments