@@ -161,7 +161,6 @@ def django_test_expected_failures(self):
161161 'bulk_create.tests.BulkCreateTests.test_bulk_insert_nullable_fields' ,
162162 'many_to_one.tests.ManyToOneTests.test_add_remove_set_by_pk_raises' ,
163163 'many_to_one.tests.ManyToOneTests.test_fk_to_smallautofield' ,
164- 'many_to_one.tests.ManyToOneTests.test_get_prefetch_queryset_reverse_warning' ,
165164 'many_to_one.tests.ManyToOneTests.test_get_prefetch_querysets_reverse_invalid_querysets_length' ,
166165 'migrations.test_operations.OperationTests.test_smallfield_autofield_foreignfield_growth' ,
167166 'migrations.test_operations.OperationTests.test_smallfield_bigautofield_foreignfield_growth' ,
@@ -187,6 +186,8 @@ def django_test_expected_failures(self):
187186 'aggregation.tests.AggregateTestCase.test_aggregation_default_expression' ,
188187 # ProgrammingError: VALUES types int and float cannot be matched
189188 'field_defaults.tests.DefaultTests.test_bulk_create_mixed_db_defaults_function' ,
189+ # CockroachDB returns incorrect order?
190+ "aggregation.tests.AggregateTestCase.test_distinct_on_stringagg" ,
190191 })
191192 if not self .is_cockroachdb_24_3 :
192193 expected_failures .update ({
@@ -201,6 +202,8 @@ def django_test_expected_failures(self):
201202 'migrations.test_operations.OperationTests.test_add_generated_field' ,
202203 # concat(): unknown signature: concat(string, int2) (desired <string>)
203204 '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" ,
204207 })
205208 if self .is_cockroachdb_25_1 :
206209 expected_failures .update ({
@@ -264,6 +267,8 @@ def django_test_expected_failures(self):
264267 # incompatible COALESCE expressions: unsupported binary
265268 # operator: <decimal> / <float> (desired <decimal>)
266269 'aggregation.tests.AggregateTestCase.test_aggregation_default_passed_another_aggregate' ,
270+ # could not parse "@" as type timestamptz: parsing as type timestamp: empty or blank input
271+ "aggregation.tests.AggregateTestCase.test_string_agg_order_by" ,
267272 })
268273 if self .is_cockroachdb_24_3 :
269274 expected_failures .update ({
0 commit comments