@@ -165,7 +165,6 @@ def django_test_expected_failures(self):
165
165
'bulk_create.tests.BulkCreateTests.test_bulk_insert_nullable_fields' ,
166
166
'many_to_one.tests.ManyToOneTests.test_add_remove_set_by_pk_raises' ,
167
167
'many_to_one.tests.ManyToOneTests.test_fk_to_smallautofield' ,
168
- 'many_to_one.tests.ManyToOneTests.test_get_prefetch_queryset_reverse_warning' ,
169
168
'many_to_one.tests.ManyToOneTests.test_get_prefetch_querysets_reverse_invalid_querysets_length' ,
170
169
'migrations.test_operations.OperationTests.test_smallfield_autofield_foreignfield_growth' ,
171
170
'migrations.test_operations.OperationTests.test_smallfield_bigautofield_foreignfield_growth' ,
@@ -205,6 +204,8 @@ def django_test_expected_failures(self):
205
204
'migrations.test_operations.OperationTests.test_add_generated_field' ,
206
205
# concat(): unknown signature: concat(string, int2) (desired <string>)
207
206
'db_functions.text.test_concat.ConcatTests.test_concat_non_str' ,
207
+ # unknown signature: concat(timestamptz, string)
208
+ "aggregation.tests.AggregateTestCase.test_string_agg_order_by" ,
208
209
})
209
210
if self .is_cockroachdb_25_1 :
210
211
expected_failures .update ({
@@ -231,9 +232,7 @@ def django_test_expected_failures(self):
231
232
'expressions_case.tests.CaseExpressionTests.test_annotate_with_aggregation_in_predicate' ,
232
233
'expressions_case.tests.CaseExpressionTests.test_annotate_with_annotation_in_condition' ,
233
234
'expressions_case.tests.CaseExpressionTests.test_annotate_with_annotation_in_predicate' ,
234
- 'expressions_case.tests.CaseExpressionTests.test_annotate_with_empty_when' ,
235
235
'expressions_case.tests.CaseExpressionTests.test_annotate_with_expression_as_condition' ,
236
- 'expressions_case.tests.CaseExpressionTests.test_annotate_with_full_when' ,
237
236
'expressions_case.tests.CaseExpressionTests.test_annotate_with_join_in_condition' ,
238
237
'expressions_case.tests.CaseExpressionTests.test_annotate_with_join_in_predicate' ,
239
238
'expressions_case.tests.CaseExpressionTests.test_case_reuse' ,
@@ -244,6 +243,7 @@ def django_test_expected_failures(self):
244
243
'lookup.tests.LookupQueryingTests.test_conditional_expression' ,
245
244
'ordering.tests.OrderingTests.test_order_by_constant_value' ,
246
245
'queries.test_bulk_update.BulkUpdateNoteTests.test_batch_size' ,
246
+ 'queries.test_bulk_update.BulkUpdateNoteTests.test_max_batch_size' ,
247
247
'queries.test_bulk_update.BulkUpdateNoteTests.test_multiple_fields' ,
248
248
'queries.test_bulk_update.BulkUpdateNoteTests.test_simple' ,
249
249
'queries.test_bulk_update.BulkUpdateTests.test_custom_pk' ,
@@ -268,6 +268,8 @@ def django_test_expected_failures(self):
268
268
# incompatible COALESCE expressions: unsupported binary
269
269
# operator: <decimal> / <float> (desired <decimal>)
270
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" ,
271
273
})
272
274
if self .is_cockroachdb_24_3 :
273
275
expected_failures .update ({
0 commit comments