|
327 | 327 |
|
328 | 328 | # Migration data persistence - table name with spaces issue |
329 | 329 | 'migration_test_data_persistence.tests.MigrationDataPersistenceClassSetup', |
| 330 | + |
| 331 | + # Multi-column foreign key tests with tuple lookups - also affected by SQL Server limitations |
| 332 | + # TODO: Fix tuple lookup generation for multi-column FKs |
| 333 | + 'foreign_object.tests.MultiColumnFKTests.test_double_nested_query', |
| 334 | + 'foreign_object.tests.MultiColumnFKTests.test_forward_in_lookup_filters_correctly', |
| 335 | + 'foreign_object.tests.MultiColumnFKTests.test_prefetch_foreignobject_forward', |
| 336 | + 'foreign_object.tests.MultiColumnFKTests.test_prefetch_foreignobject_hidden_forward', |
| 337 | + 'foreign_object.tests.MultiColumnFKTests.test_prefetch_foreignobject_reverse', |
| 338 | + 'foreign_object.tests.MultiColumnFKTests.test_prefetch_related_m2m_forward_works', |
| 339 | + 'foreign_object.tests.MultiColumnFKTests.test_prefetch_related_m2m_reverse_works', |
| 340 | + 'foreign_object.tests.MultiColumnFKTests.test_reverse_query_returns_correct_result', |
| 341 | + |
| 342 | + # JSONField special character handling - SQL Server specific syntax issues |
| 343 | + # TODO: Fix JSONField key escaping for special characters |
| 344 | + 'model_fields.test_jsonfield.TestQuerying.test_lookups_special_chars', |
| 345 | + 'model_fields.test_jsonfield.TestQuerying.test_lookups_special_chars_double_quotes', |
| 346 | + |
| 347 | + # JSONField bulk update with null handling |
| 348 | + # TODO: Fix bulk update SQL generation for JSONField null values |
| 349 | + 'queries.test_bulk_update.BulkUpdateTests.test_json_field_sql_null', |
| 350 | + |
| 351 | + # Migration and composite primary key issues |
| 352 | + # TODO: Implement composite primary key support |
| 353 | + 'migrations.test_operations.OperationTests.test_composite_pk_operations', |
| 354 | + 'migrations.test_operations.OperationTests.test_generated_field_changes_output_field', |
| 355 | + 'migration_test_data_persistence.tests.MigrationDataPersistenceClassSetup.test_migration_data_persistence', |
| 356 | + |
| 357 | + # Backend and schema test failures |
| 358 | + # TODO: Fix SQL Server specific backend behavior |
| 359 | + 'backends.base.test_base.ExecuteWrapperTests.test_wrapper_debug', |
| 360 | + 'indexes.tests.SchemaIndexesTests.test_alter_field_unique_false_removes_deferred_sql', |
330 | 361 |
|
331 | 362 | # Aggregation with filtered references |
332 | 363 | # TODO: Fix complex aggregation queries with outer references |
|
0 commit comments