@@ -161,7 +161,6 @@ def django_test_expected_failures(self):
161
161
'bulk_create.tests.BulkCreateTests.test_bulk_insert_nullable_fields' ,
162
162
'many_to_one.tests.ManyToOneTests.test_add_remove_set_by_pk_raises' ,
163
163
'many_to_one.tests.ManyToOneTests.test_fk_to_smallautofield' ,
164
- 'many_to_one.tests.ManyToOneTests.test_get_prefetch_queryset_reverse_warning' ,
165
164
'many_to_one.tests.ManyToOneTests.test_get_prefetch_querysets_reverse_invalid_querysets_length' ,
166
165
'migrations.test_operations.OperationTests.test_smallfield_autofield_foreignfield_growth' ,
167
166
'migrations.test_operations.OperationTests.test_smallfield_bigautofield_foreignfield_growth' ,
@@ -187,6 +186,8 @@ def django_test_expected_failures(self):
187
186
'aggregation.tests.AggregateTestCase.test_aggregation_default_expression' ,
188
187
# ProgrammingError: VALUES types int and float cannot be matched
189
188
'field_defaults.tests.DefaultTests.test_bulk_create_mixed_db_defaults_function' ,
189
+ # CockroachDB returns incorrect order?
190
+ "aggregation.tests.AggregateTestCase.test_distinct_on_stringagg" ,
190
191
})
191
192
if not self .is_cockroachdb_24_3 :
192
193
expected_failures .update ({
@@ -201,6 +202,8 @@ def django_test_expected_failures(self):
201
202
'migrations.test_operations.OperationTests.test_add_generated_field' ,
202
203
# concat(): unknown signature: concat(string, int2) (desired <string>)
203
204
'db_functions.text.test_concat.ConcatTests.test_concat_non_str' ,
205
+ # unknown signature: concat(timestamptz, string)
206
+ "aggregation.tests.AggregateTestCase.test_string_agg_order_by" ,
204
207
})
205
208
if self .is_cockroachdb_25_1 :
206
209
expected_failures .update ({
@@ -240,6 +243,7 @@ def django_test_expected_failures(self):
240
243
'lookup.tests.LookupQueryingTests.test_conditional_expression' ,
241
244
'ordering.tests.OrderingTests.test_order_by_constant_value' ,
242
245
'queries.test_bulk_update.BulkUpdateNoteTests.test_batch_size' ,
246
+ 'queries.test_bulk_update.BulkUpdateNoteTests.test_max_batch_size' ,
243
247
'queries.test_bulk_update.BulkUpdateNoteTests.test_multiple_fields' ,
244
248
'queries.test_bulk_update.BulkUpdateNoteTests.test_simple' ,
245
249
'queries.test_bulk_update.BulkUpdateTests.test_custom_pk' ,
@@ -264,6 +268,8 @@ def django_test_expected_failures(self):
264
268
# incompatible COALESCE expressions: unsupported binary
265
269
# operator: <decimal> / <float> (desired <decimal>)
266
270
'aggregation.tests.AggregateTestCase.test_aggregation_default_passed_another_aggregate' ,
271
+ # could not parse "@" as type timestamptz: parsing as type timestamp: empty or blank input
272
+ "aggregation.tests.AggregateTestCase.test_string_agg_order_by" ,
267
273
})
268
274
if self .is_cockroachdb_24_3 :
269
275
expected_failures .update ({
0 commit comments