@@ -62,6 +62,8 @@ class DatabaseFeatures(BaseDatabaseFeatures):
62
62
'lookup.tests.LookupTests.test_regex' ,
63
63
# "Binding data in type (event) is not supported." To be investigated.
64
64
'model_fields.test_charfield.TestCharField.test_assignment_from_choice_enum' ,
65
+ # Binding data in type (safestring) is not supported.
66
+ 'i18n.tests.TestModels.test_safestr' ,
65
67
# Violating NOT NULL constraint should raise IntegrityError instead of
66
68
# ProgrammingError: https://github.com/snowflakedb/snowflake-connector-python/issues/922
67
69
'custom_pk.tests.CustomPKTests.test_required_pk' ,
@@ -205,6 +207,10 @@ class DatabaseFeatures(BaseDatabaseFeatures):
205
207
'generic_relations_regress.tests.GenericRelationTests.test_ticket_20564' ,
206
208
'generic_relations_regress.tests.GenericRelationTests.test_ticket_20564_nullable_fk' ,
207
209
'many_to_many.tests.ManyToManyTests.test_selects' ,
210
+ 'model_forms.tests.LimitChoicesToTests.test_fields_for_model_applies_limit_choices_to' ,
211
+ 'model_forms.tests.LimitChoicesToTests.test_limit_choices_to_callable_for_fk_rel' ,
212
+ 'model_forms.tests.LimitChoicesToTests.test_limit_choices_to_callable_for_m2m_rel' ,
213
+ 'model_forms.tests.LimitChoicesToTests.test_limit_choices_to_no_duplicates' ,
208
214
'queries.test_qs_combinators.QuerySetSetOperationTests.test_union_with_values_list_on_annotated_and_unannotated' , # noqa
209
215
'queries.tests.ExcludeTest17600.test_exclude_plain' ,
210
216
'queries.tests.ExcludeTest17600.test_exclude_plain_distinct' ,
@@ -357,6 +363,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
357
363
'assertNumQueries is sometimes off because of the extra queries this '
358
364
'backend uses to fetch an object\' s ID.' : {
359
365
'contenttypes_tests.test_models.ContentTypesTests.test_get_for_models_creation' ,
366
+ 'model_formsets_regress.tests.FormsetTests.test_extraneous_query_is_not_run' ,
360
367
},
361
368
'It can be problematic if a model instance is manually assigned a pk value.' : {
362
369
'contenttypes_tests.test_views.ContentTypesViewsSiteRelTests.test_shortcut_view_with_null_site_fk' ,
0 commit comments