@@ -62,6 +62,8 @@ class DatabaseFeatures(BaseDatabaseFeatures):
6262 'lookup.tests.LookupTests.test_regex' ,
6363 # "Binding data in type (event) is not supported." To be investigated.
6464 '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' ,
6567 # Violating NOT NULL constraint should raise IntegrityError instead of
6668 # ProgrammingError: https://github.com/snowflakedb/snowflake-connector-python/issues/922
6769 'custom_pk.tests.CustomPKTests.test_required_pk' ,
@@ -205,6 +207,10 @@ class DatabaseFeatures(BaseDatabaseFeatures):
205207 'generic_relations_regress.tests.GenericRelationTests.test_ticket_20564' ,
206208 'generic_relations_regress.tests.GenericRelationTests.test_ticket_20564_nullable_fk' ,
207209 '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' ,
208214 'queries.test_qs_combinators.QuerySetSetOperationTests.test_union_with_values_list_on_annotated_and_unannotated' , # noqa
209215 'queries.tests.ExcludeTest17600.test_exclude_plain' ,
210216 'queries.tests.ExcludeTest17600.test_exclude_plain_distinct' ,
@@ -357,6 +363,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
357363 'assertNumQueries is sometimes off because of the extra queries this '
358364 'backend uses to fetch an object\' s ID.' : {
359365 'contenttypes_tests.test_models.ContentTypesTests.test_get_for_models_creation' ,
366+ 'model_formsets_regress.tests.FormsetTests.test_extraneous_query_is_not_run' ,
360367 },
361368 'It can be problematic if a model instance is manually assigned a pk value.' : {
362369 'contenttypes_tests.test_views.ContentTypesViewsSiteRelTests.test_shortcut_view_with_null_site_fk' ,
0 commit comments