Skip to content

Commit b480649

Browse files
committed
Add Readme.
1 parent c93b305 commit b480649

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/test-python.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ jobs:
6767
- name: Run tests
6868
run: >
6969
python3 django_repo/tests/runtests.py --settings mongodb_settings -v 2
70+
aggregation
7071
annotations
7172
auth_tests.test_models.UserManagerTestCase
7273
backends.base.test_base.DatabaseWrapperTests

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,17 +109,19 @@ Migrations for 'admin':
109109
## Known issues and limitations
110110

111111
- The following `QuerySet` methods aren't supported:
112-
- `aggregate()`
113112
- `bulk_update()`
114113
- `dates()`
115114
- `datetimes()`
116115
- `distinct()`
117116
- `extra()`
118117
- `prefetch_related()`
119118

119+
120120
- `QuerySet.delete()` and `update()` do not support queries that span multiple
121121
collections.
122122

123+
- `aggregate()` Sort with aggregate may not work well.
124+
123125
- `Subquery`, `Exists`, and using a `QuerySet` in `QuerySet.annotate()` aren't
124126
supported.
125127

django_mongodb/features.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,6 @@ class DatabaseFeatures(BaseDatabaseFeatures):
9393
"annotations.tests.AliasTests.test_order_by_alias_aggregate",
9494
# annotate() + values_list() + order_by() loses annotated value.
9595
"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",
9896
# QuerySet.explain() not implemented:
9997
# https://github.com/mongodb-labs/django-mongodb/issues/28
10098
"queries.test_explain.ExplainUnsupportedTests.test_message",

0 commit comments

Comments
 (0)