-
-
Notifications
You must be signed in to change notification settings - Fork 3
INTPYTHON-348 Update raw_query tests for raw_mql #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
aclark4life
wants to merge
28
commits into
mongodb-forks:mongodb-5.0.x
from
aclark4life:mongodb-5.0.x
Closed
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
a017deb
Update GenericForeignKey object_id to CharField/TextField
timgraham 9152f83
use ObjectIdAutoField in test models
timgraham c565caf
update serializer output for MongoAutoField
timgraham 36b1030
comment out usage of QuerySet.extra()
timgraham c09a3b8
remove unsupported usage of nulls_first
timgraham e124a7b
aggregation, aggregation_regress edits
timgraham 871fa74
add test for ModelForm data using numeric pks
timgraham 4e34ee4
drop requirement that QuerySet.explain() log a query
timgraham abfd5cb
schema and migrations test edits
timgraham b08f3f1
backends edits
timgraham c1627fe
introspection test edits
timgraham 0f68e6f
Added supports_sequence_reset skip in backends tests.
timgraham 953dbf3
remove SQL introspection from queries tests
timgraham 26dabbb
Added QuerySet.union() test with renames.
WaVEV 9ba649b
Fixed #35815 -- Allowed db_default to be a literal.
timgraham 553b35d
edits for many test apps
timgraham b4b95ab
indexes
timgraham 0354694
add skip for partial index support
timgraham aa10dfd
fix "view on site" for non-integer pks
timgraham 0dde152
allow runtests.py to discover tests in django_mongodb/tests
timgraham fa62156
INTPYTHON-348 Update raw_query tests for raw_mql
aclark4life 98a6cce
INTPYTHON-348 Update raw_query tests for raw_mql
aclark4life 7b822c2
Revert "INTPYTHON-348 Update raw_query tests for raw_mql"
aclark4life 4874aee
INTPYTHON-348 Update raw_query tests for raw_mql
aclark4life fda8f96
INTPYTHON-348 add support for QuerySet.raw()
aclark4life b4687dc
INTPYTHON-348 Update raw_query tests for raw_mql
aclark4life 7a46121
INTPYTHON-348 Update raw_query tests for raw_mql
aclark4life 65d64eb
INTPYTHON-348 Add support for QuerySet.raw()
aclark4life File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You don't need to add an explicit primary key to all these methods. Put
DEFAULT_AUTO_FIELD = "django_mongodb.fields.ObjectIdAutoField"
in your test settings file.