@@ -205,6 +205,9 @@ class DatabaseFeatures(BaseDatabaseFeatures):
205
205
"annotations.tests.NonAggregateAnnotationTestCase.test_order_by_annotation" ,
206
206
# annotate().filter().count() gives incorrect results.
207
207
"db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_year_exact_lookup" ,
208
+ "model_fields.test_jsonfield.TestQuerying.test_nested_key_transform_on_subquery" ,
209
+ "model_fields.test_jsonfield.TestQuerying.test_ordering_grouping_by_count" ,
210
+ "model_fields.test_jsonfield.TestQuerying.test_obj_subquery_lookup" ,
208
211
},
209
212
"Count doesn't work in QuerySet.annotate()" : {
210
213
"annotations.tests.AliasTests.test_alias_annotate_with_aggregation" ,
@@ -282,6 +285,10 @@ class DatabaseFeatures(BaseDatabaseFeatures):
282
285
"update.tests.SimpleTest.test_empty_update_with_inheritance" ,
283
286
"update.tests.SimpleTest.test_foreign_key_update_with_id" ,
284
287
"update.tests.SimpleTest.test_nonempty_update_with_inheritance" ,
288
+ "model_fields.test_jsonfield.TestQuerying.test_ordering_grouping_by_key_transform" ,
289
+ "model_fields.test_jsonfield.TestQuerying.test_ordering_by_transform" ,
290
+ "model_fields.test_jsonfield.TestQuerying.test_order_grouping_custom_decoder" ,
291
+ "model_fields.test_jsonfield.TestQuerying.test_join_key_transform_annotation_expression" ,
285
292
},
286
293
"Test inspects query for SQL" : {
287
294
"lookup.tests.LookupTests.test_in_ignore_none" ,
@@ -296,6 +303,9 @@ class DatabaseFeatures(BaseDatabaseFeatures):
296
303
"timezones.tests.NewDatabaseTests.test_cursor_execute_returns_naive_datetime" ,
297
304
"timezones.tests.NewDatabaseTests.test_cursor_explicit_time_zone" ,
298
305
"timezones.tests.NewDatabaseTests.test_raw_sql" ,
306
+ "model_fields.test_jsonfield.TestQuerying.test_key_transform_raw_expression" ,
307
+ "model_fields.test_jsonfield.TestQuerying.test_key_sql_injection_escape" ,
308
+ "model_fields.test_jsonfield.TestQuerying.test_nested_key_transform_raw_expression" ,
299
309
},
300
310
"Bilateral transform not implemented." : {
301
311
"db_functions.tests.FunctionTests.test_func_transform_bilateral" ,
@@ -353,7 +363,8 @@ class DatabaseFeatures(BaseDatabaseFeatures):
353
363
},
354
364
"Mongodb's Null behaviour is different from sql's" : {
355
365
"model_fields.test_jsonfield.TestQuerying.test_none_key_and_exact_lookup" ,
356
- # "model_fields.test_jsonfield.TestQuerying.test_isnull_key",
366
+ "model_fields.test_jsonfield.TestSaveLoad.test_json_null_different_from_sql_null" ,
367
+ "model_fields.test_jsonfield.TestQuerying.test_none_key" ,
357
368
},
358
369
"Pipeline filtering" : {"model_fields.test_jsonfield.TestQuerying.test_icontains" },
359
370
}
0 commit comments