@@ -169,7 +169,6 @@ def django_test_expected_failures(self):
169169 'bulk_create.tests.BulkCreateTests.test_bulk_insert_nullable_fields' ,
170170 'many_to_one.tests.ManyToOneTests.test_add_remove_set_by_pk_raises' ,
171171 'many_to_one.tests.ManyToOneTests.test_fk_to_smallautofield' ,
172- 'many_to_one.tests.ManyToOneTests.test_get_prefetch_queryset_reverse_warning' ,
173172 'many_to_one.tests.ManyToOneTests.test_get_prefetch_querysets_reverse_invalid_querysets_length' ,
174173 'migrations.test_operations.OperationTests.test_smallfield_autofield_foreignfield_growth' ,
175174 'migrations.test_operations.OperationTests.test_smallfield_bigautofield_foreignfield_growth' ,
@@ -209,6 +208,8 @@ def django_test_expected_failures(self):
209208 'migrations.test_operations.OperationTests.test_add_generated_field' ,
210209 # concat(): unknown signature: concat(string, int2) (desired <string>)
211210 'db_functions.text.test_concat.ConcatTests.test_concat_non_str' ,
211+ # unknown signature: concat(timestamptz, string)
212+ "aggregation.tests.AggregateTestCase.test_string_agg_order_by" ,
212213 })
213214 if self .is_cockroachdb_25_1 :
214215 expected_failures .update ({
@@ -235,9 +236,7 @@ def django_test_expected_failures(self):
235236 'expressions_case.tests.CaseExpressionTests.test_annotate_with_aggregation_in_predicate' ,
236237 'expressions_case.tests.CaseExpressionTests.test_annotate_with_annotation_in_condition' ,
237238 'expressions_case.tests.CaseExpressionTests.test_annotate_with_annotation_in_predicate' ,
238- 'expressions_case.tests.CaseExpressionTests.test_annotate_with_empty_when' ,
239239 'expressions_case.tests.CaseExpressionTests.test_annotate_with_expression_as_condition' ,
240- 'expressions_case.tests.CaseExpressionTests.test_annotate_with_full_when' ,
241240 'expressions_case.tests.CaseExpressionTests.test_annotate_with_join_in_condition' ,
242241 'expressions_case.tests.CaseExpressionTests.test_annotate_with_join_in_predicate' ,
243242 'expressions_case.tests.CaseExpressionTests.test_case_reuse' ,
@@ -248,6 +247,7 @@ def django_test_expected_failures(self):
248247 'lookup.tests.LookupQueryingTests.test_conditional_expression' ,
249248 'ordering.tests.OrderingTests.test_order_by_constant_value' ,
250249 'queries.test_bulk_update.BulkUpdateNoteTests.test_batch_size' ,
250+ 'queries.test_bulk_update.BulkUpdateNoteTests.test_max_batch_size' ,
251251 'queries.test_bulk_update.BulkUpdateNoteTests.test_multiple_fields' ,
252252 'queries.test_bulk_update.BulkUpdateNoteTests.test_simple' ,
253253 'queries.test_bulk_update.BulkUpdateTests.test_custom_pk' ,
@@ -272,6 +272,8 @@ def django_test_expected_failures(self):
272272 # incompatible COALESCE expressions: unsupported binary
273273 # operator: <decimal> / <float> (desired <decimal>)
274274 'aggregation.tests.AggregateTestCase.test_aggregation_default_passed_another_aggregate' ,
275+ # could not parse "@" as type timestamptz: parsing as type timestamp: empty or blank input
276+ "aggregation.tests.AggregateTestCase.test_string_agg_order_by" ,
275277 })
276278 if self .is_cockroachdb_24_3 :
277279 expected_failures .update ({
0 commit comments