Skip to content

Commit fe5a792

Browse files
committed
django_spanner: skip 57 expressions_case tests that assume serial pk
Updates #317 Updates #353
1 parent 187e746 commit fe5a792

File tree

1 file changed

+57
-0
lines changed
  • packages/django-google-spanner/django_spanner

1 file changed

+57
-0
lines changed

packages/django-google-spanner/django_spanner/features.py

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,63 @@ class DatabaseFeatures(BaseDatabaseFeatures):
7777
'aggregation_regress.tests.AggregationTests.test_ticket_11293',
7878
'defer_regress.tests.DeferRegressionTest.test_ticket_23270',
7979
'distinct_on_fields.tests.DistinctOnTests.test_basic_distinct_on',
80+
'expressions_case.tests.CaseDocumentationExamples.test_conditional_update_example',
81+
'expressions_case.tests.CaseDocumentationExamples.test_simple_example',
82+
'expressions_case.tests.CaseExpressionTests.test_annotate',
83+
'expressions_case.tests.CaseExpressionTests.test_annotate_exclude',
84+
'expressions_case.tests.CaseExpressionTests.test_annotate_with_aggregation_in_condition',
85+
'expressions_case.tests.CaseExpressionTests.test_annotate_with_aggregation_in_predicate',
86+
'expressions_case.tests.CaseExpressionTests.test_annotate_with_aggregation_in_value',
87+
'expressions_case.tests.CaseExpressionTests.test_annotate_with_annotation_in_condition',
88+
'expressions_case.tests.CaseExpressionTests.test_annotate_with_annotation_in_predicate',
89+
'expressions_case.tests.CaseExpressionTests.test_annotate_with_annotation_in_value',
90+
'expressions_case.tests.CaseExpressionTests.test_annotate_with_expression_as_condition',
91+
'expressions_case.tests.CaseExpressionTests.test_annotate_with_expression_as_value',
92+
'expressions_case.tests.CaseExpressionTests.test_annotate_with_in_clause',
93+
'expressions_case.tests.CaseExpressionTests.test_annotate_with_join_in_condition',
94+
'expressions_case.tests.CaseExpressionTests.test_annotate_with_join_in_predicate',
95+
'expressions_case.tests.CaseExpressionTests.test_annotate_with_join_in_value',
96+
'expressions_case.tests.CaseExpressionTests.test_annotate_without_default',
97+
'expressions_case.tests.CaseExpressionTests.test_combined_expression',
98+
'expressions_case.tests.CaseExpressionTests.test_combined_q_object',
99+
'expressions_case.tests.CaseExpressionTests.test_filter',
100+
'expressions_case.tests.CaseExpressionTests.test_filter_with_aggregation_in_condition',
101+
'expressions_case.tests.CaseExpressionTests.test_filter_with_aggregation_in_predicate',
102+
'expressions_case.tests.CaseExpressionTests.test_filter_with_aggregation_in_value',
103+
'expressions_case.tests.CaseExpressionTests.test_filter_with_annotation_in_condition',
104+
'expressions_case.tests.CaseExpressionTests.test_filter_with_annotation_in_predicate',
105+
'expressions_case.tests.CaseExpressionTests.test_filter_with_expression_as_condition',
106+
'expressions_case.tests.CaseExpressionTests.test_filter_with_expression_as_value',
107+
'expressions_case.tests.CaseExpressionTests.test_filter_with_join_in_condition',
108+
'expressions_case.tests.CaseExpressionTests.test_filter_with_join_in_predicate',
109+
'expressions_case.tests.CaseExpressionTests.test_filter_without_default',
110+
'expressions_case.tests.CaseExpressionTests.test_in_subquery',
111+
'expressions_case.tests.CaseExpressionTests.test_lookup_different_fields',
112+
'expressions_case.tests.CaseExpressionTests.test_lookup_in_condition',
113+
'expressions_case.tests.CaseExpressionTests.test_update',
114+
'expressions_case.tests.CaseExpressionTests.test_update_big_integer',
115+
'expressions_case.tests.CaseExpressionTests.test_update_decimal',
116+
'expressions_case.tests.CaseExpressionTests.test_update_duration',
117+
'expressions_case.tests.CaseExpressionTests.test_update_email',
118+
'expressions_case.tests.CaseExpressionTests.test_update_file',
119+
'expressions_case.tests.CaseExpressionTests.test_update_file_path',
120+
'expressions_case.tests.CaseExpressionTests.test_update_fk',
121+
'expressions_case.tests.CaseExpressionTests.test_update_float',
122+
'expressions_case.tests.CaseExpressionTests.test_update_generic_ip_address',
123+
'expressions_case.tests.CaseExpressionTests.test_update_image',
124+
'expressions_case.tests.CaseExpressionTests.test_update_null_boolean',
125+
'expressions_case.tests.CaseExpressionTests.test_update_null_boolean_old',
126+
'expressions_case.tests.CaseExpressionTests.test_update_positive_integer',
127+
'expressions_case.tests.CaseExpressionTests.test_update_positive_small_integer',
128+
'expressions_case.tests.CaseExpressionTests.test_update_slug',
129+
'expressions_case.tests.CaseExpressionTests.test_update_small_integer',
130+
'expressions_case.tests.CaseExpressionTests.test_update_text',
131+
'expressions_case.tests.CaseExpressionTests.test_update_time',
132+
'expressions_case.tests.CaseExpressionTests.test_update_url',
133+
'expressions_case.tests.CaseExpressionTests.test_update_uuid',
134+
'expressions_case.tests.CaseExpressionTests.test_update_with_expression_as_condition',
135+
'expressions_case.tests.CaseExpressionTests.test_update_with_expression_as_value',
136+
'expressions_case.tests.CaseExpressionTests.test_update_without_default',
80137
'generic_relations_regress.tests.GenericRelationTests.test_annotate',
81138
'get_earliest_or_latest.tests.TestFirstLast',
82139
'known_related_objects.tests.ExistingRelatedInstancesTests.test_reverse_one_to_one_multi_prefetch_related',

0 commit comments

Comments
 (0)