-
Notifications
You must be signed in to change notification settings - Fork 124
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
django 1.8 compatibility in the db module #64
Conversation
It'd also be great if this was released to PyPI. The version on there is still behind. |
So, results_iter now has a results parameter which defaults to None. If it's None, the query is evaluated. In django 1.8's compiler code, that parameter is part of some kind of caching mechanism that I didn't look into. |
with this patch, do any of the nonrel db backends support 1.8? |
Are you asking whether or not other nonrel backends will automatically work because of this patch? That depends on how much they've overwritten. Most of the changes are in the execute_sql methods of each compiler. Here's a quick list of changes/compatibility guide: Public API
Private API
|
into django-nonrel-master Conflicts: CHANGELOG.rst setup.py
Thanks for the explanation. I'm mostly curious because these changes can't be used unless you've also got the corresponding changes to the backends. Are you also working on those? For which backends? |
I mean I'd assume the maintainers would update their packages if updating this dependency. If this is a no go, I'll just create a 1.8+ fork. |
Not a no-go. This is definitely good stuff. Just curious how you're planning to use it. |
Ah, gotcha. I maintain django-ewiz, which uses djangotoolbox as a template. |
django 1.8 compatibility in the db module
No description provided.