@@ -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 ({
@@ -240,6 +243,7 @@ def django_test_expected_failures(self):
240243 'lookup.tests.LookupQueryingTests.test_conditional_expression' ,
241244 'ordering.tests.OrderingTests.test_order_by_constant_value' ,
242245 'queries.test_bulk_update.BulkUpdateNoteTests.test_batch_size' ,
246+ 'queries.test_bulk_update.BulkUpdateNoteTests.test_max_batch_size' ,
243247 'queries.test_bulk_update.BulkUpdateNoteTests.test_multiple_fields' ,
244248 'queries.test_bulk_update.BulkUpdateNoteTests.test_simple' ,
245249 'queries.test_bulk_update.BulkUpdateTests.test_custom_pk' ,
@@ -264,6 +268,8 @@ def django_test_expected_failures(self):
264268 # incompatible COALESCE expressions: unsupported binary
265269 # operator: <decimal> / <float> (desired <decimal>)
266270 '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" ,
267273 })
268274 if self .is_cockroachdb_24_3 :
269275 expected_failures .update ({
0 commit comments