File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 67
67
- name : Run tests
68
68
run : >
69
69
python3 django_repo/tests/runtests.py --settings mongodb_settings -v 2
70
+ aggregation
70
71
annotations
71
72
auth_tests.test_models.UserManagerTestCase
72
73
backends.base.test_base.DatabaseWrapperTests
Original file line number Diff line number Diff line change @@ -109,17 +109,19 @@ Migrations for 'admin':
109
109
## Known issues and limitations
110
110
111
111
- The following ` QuerySet ` methods aren't supported:
112
- - ` aggregate() `
113
112
- ` bulk_update() `
114
113
- ` dates() `
115
114
- ` datetimes() `
116
115
- ` distinct() `
117
116
- ` extra() `
118
117
- ` prefetch_related() `
119
118
119
+
120
120
- ` QuerySet.delete() ` and ` update() ` do not support queries that span multiple
121
121
collections.
122
122
123
+ - ` aggregate() ` Sort with aggregate may not work well.
124
+
123
125
- ` Subquery ` , ` Exists ` , and using a ` QuerySet ` in ` QuerySet.annotate() ` aren't
124
126
supported.
125
127
Original file line number Diff line number Diff line change @@ -93,8 +93,6 @@ class DatabaseFeatures(BaseDatabaseFeatures):
93
93
"annotations.tests.AliasTests.test_order_by_alias_aggregate" ,
94
94
# annotate() + values_list() + order_by() loses annotated value.
95
95
"expressions_case.tests.CaseExpressionTests.test_annotate_values_not_in_order_by" ,
96
- # pymongo.errors.OperationFailure: the limit must be positive
97
- "queries.tests.WeirdQuerysetSlicingTests.test_tickets_7698_10202" ,
98
96
# QuerySet.explain() not implemented:
99
97
# https://github.com/mongodb-labs/django-mongodb/issues/28
100
98
"queries.test_explain.ExplainUnsupportedTests.test_message" ,
You can’t perform that action at this time.
0 commit comments