@@ -86,24 +86,15 @@ class DatabaseFeatures(BaseDatabaseFeatures):
86
86
"backends.tests.ThreadTests.test_pass_connection_between_threads" ,
87
87
"backends.tests.ThreadTests.test_closing_non_shared_connections" ,
88
88
"backends.tests.ThreadTests.test_default_connection_thread_local" ,
89
- # Add/RemoveIndex
90
- "schema.tests.SchemaTests.test_add_remove_index" ,
91
- "schema.tests.SchemaTests.test_composed_desc_index_with_fk" ,
92
- "schema.tests.SchemaTests.test_composed_index_with_fk" ,
93
- "schema.tests.SchemaTests.test_create_index_together" ,
94
- "schema.tests.SchemaTests.test_order_index" ,
95
- "schema.tests.SchemaTests.test_text_field_with_db_index" ,
96
89
# AlterField
97
90
"schema.tests.SchemaTests.test_alter" ,
98
91
"schema.tests.SchemaTests.test_alter_auto_field_to_integer_field" ,
99
92
"schema.tests.SchemaTests.test_alter_field_add_index_to_integerfield" ,
100
93
"schema.tests.SchemaTests.test_alter_field_default_dropped" ,
101
- "schema.tests.SchemaTests.test_alter_field_fk_keeps_index" ,
102
94
"schema.tests.SchemaTests.test_alter_field_fk_to_o2o" ,
103
95
"schema.tests.SchemaTests.test_alter_field_o2o_keeps_unique" ,
104
96
"schema.tests.SchemaTests.test_alter_field_o2o_to_fk" ,
105
97
"schema.tests.SchemaTests.test_alter_int_pk_to_int_unique" ,
106
- "schema.tests.SchemaTests.test_alter_not_unique_field_to_primary_key" ,
107
98
"schema.tests.SchemaTests.test_alter_null_to_not_null" ,
108
99
"schema.tests.SchemaTests.test_alter_null_to_not_null_keeping_default" ,
109
100
"schema.tests.SchemaTests.test_alter_primary_key_the_same_name" ,
@@ -136,6 +127,8 @@ class DatabaseFeatures(BaseDatabaseFeatures):
136
127
"schema.tests.SchemaTests.test_composed_constraint_with_fk" ,
137
128
"schema.tests.SchemaTests.test_remove_ignored_unique_constraint_not_create_fk_index" ,
138
129
"schema.tests.SchemaTests.test_unique_constraint" ,
130
+ # constraints not fully implemented.
131
+ "introspection.tests.IntrospectionTests.test_get_constraints" ,
139
132
}
140
133
# $bitAnd, #bitOr, and $bitXor are new in MongoDB 6.3.
141
134
_django_test_expected_failures_bitwise = {
@@ -218,6 +211,7 @@ def django_test_expected_failures(self):
218
211
"get_or_create.tests.GetOrCreateThroughManyToMany.test_something" ,
219
212
"get_or_create.tests.UpdateOrCreateTests.test_manual_primary_key_test" ,
220
213
"get_or_create.tests.UpdateOrCreateTestsWithManualPKs.test_create_with_duplicate_primary_key" ,
214
+ "introspection.tests.IntrospectionTests.test_get_constraints_unique_indexes_orders" ,
221
215
"model_fields.test_filefield.FileFieldTests.test_unique_when_same_filename" ,
222
216
"one_to_one.tests.OneToOneTests.test_multiple_o2o" ,
223
217
"queries.test_bulk_update.BulkUpdateTests.test_database_routing_batch_atomicity" ,
@@ -598,14 +592,8 @@ def django_test_expected_failures(self):
598
592
"introspection.tests.IntrospectionTests.test_get_table_description_types" ,
599
593
"introspection.tests.IntrospectionTests.test_smallautofield" ,
600
594
},
601
- "DatabaseIntrospection.get_constraints() not implemented." : {
602
- "introspection.tests.IntrospectionTests.test_get_constraints" ,
603
- "introspection.tests.IntrospectionTests.test_get_constraints_index_types" ,
604
- "introspection.tests.IntrospectionTests.test_get_constraints_indexes_orders" ,
605
- "introspection.tests.IntrospectionTests.test_get_constraints_unique_indexes_orders" ,
606
- "introspection.tests.IntrospectionTests.test_get_primary_key_column" ,
607
- },
608
595
"MongoDB can't introspect primary key." : {
596
+ "introspection.tests.IntrospectionTests.test_get_primary_key_column" ,
609
597
"schema.tests.SchemaTests.test_primary_key" ,
610
598
},
611
599
"Known issue querying JSONField." : {
0 commit comments