@@ -86,23 +86,14 @@ 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_auto_field_to_integer_field" ,
98
91
"schema.tests.SchemaTests.test_alter_field_add_index_to_integerfield" ,
99
92
"schema.tests.SchemaTests.test_alter_field_default_dropped" ,
100
- "schema.tests.SchemaTests.test_alter_field_fk_keeps_index" ,
101
93
"schema.tests.SchemaTests.test_alter_field_fk_to_o2o" ,
102
94
"schema.tests.SchemaTests.test_alter_field_o2o_keeps_unique" ,
103
95
"schema.tests.SchemaTests.test_alter_field_o2o_to_fk" ,
104
96
"schema.tests.SchemaTests.test_alter_int_pk_to_int_unique" ,
105
- "schema.tests.SchemaTests.test_alter_not_unique_field_to_primary_key" ,
106
97
"schema.tests.SchemaTests.test_alter_null_to_not_null" ,
107
98
"schema.tests.SchemaTests.test_alter_primary_key_the_same_name" ,
108
99
"schema.tests.SchemaTests.test_autofield_to_o2o" ,
@@ -129,6 +120,8 @@ class DatabaseFeatures(BaseDatabaseFeatures):
129
120
"schema.tests.SchemaTests.test_composed_constraint_with_fk" ,
130
121
"schema.tests.SchemaTests.test_remove_ignored_unique_constraint_not_create_fk_index" ,
131
122
"schema.tests.SchemaTests.test_unique_constraint" ,
123
+ # constraints not fully implemented.
124
+ "introspection.tests.IntrospectionTests.test_get_constraints" ,
132
125
}
133
126
# $bitAnd, #bitOr, and $bitXor are new in MongoDB 6.3.
134
127
_django_test_expected_failures_bitwise = {
@@ -211,6 +204,7 @@ def django_test_expected_failures(self):
211
204
"get_or_create.tests.GetOrCreateThroughManyToMany.test_something" ,
212
205
"get_or_create.tests.UpdateOrCreateTests.test_manual_primary_key_test" ,
213
206
"get_or_create.tests.UpdateOrCreateTestsWithManualPKs.test_create_with_duplicate_primary_key" ,
207
+ "introspection.tests.IntrospectionTests.test_get_constraints_unique_indexes_orders" ,
214
208
"model_fields.test_filefield.FileFieldTests.test_unique_when_same_filename" ,
215
209
"one_to_one.tests.OneToOneTests.test_multiple_o2o" ,
216
210
"queries.test_bulk_update.BulkUpdateTests.test_database_routing_batch_atomicity" ,
@@ -591,14 +585,8 @@ def django_test_expected_failures(self):
591
585
"introspection.tests.IntrospectionTests.test_get_table_description_types" ,
592
586
"introspection.tests.IntrospectionTests.test_smallautofield" ,
593
587
},
594
- "DatabaseIntrospection.get_constraints() not implemented." : {
595
- "introspection.tests.IntrospectionTests.test_get_constraints" ,
596
- "introspection.tests.IntrospectionTests.test_get_constraints_index_types" ,
597
- "introspection.tests.IntrospectionTests.test_get_constraints_indexes_orders" ,
598
- "introspection.tests.IntrospectionTests.test_get_constraints_unique_indexes_orders" ,
599
- "introspection.tests.IntrospectionTests.test_get_primary_key_column" ,
600
- },
601
588
"MongoDB can't introspect primary key." : {
589
+ "introspection.tests.IntrospectionTests.test_get_primary_key_column" ,
602
590
"schema.tests.SchemaTests.test_primary_key" ,
603
591
},
604
592
"Known issue querying JSONField." : {
0 commit comments