-
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
Subqueries fail silently #8
Comments
do any of the non-rel backends support subqueries? i know appengine doesn't, so if the others also don't, we could raise an exception. |
Wilfred, what happens if you put a |
|
Okay so we need a test in djangotoolbox for this and a fix in either djangoappengine or djangotoolbox, depending on which code is broken |
…baseError (other exception may get swallowed and result in an empty set being returned). See issue #8.
An exception should be raised if a subquery is used with the recent changes. However, we could try to evaluate subqueries or avoid them when constructing queries. |
Taken from this mailing list discussion: http://groups.google.com/group/django-non-relational/browse_thread/thread/c006d67444bb28f7
Given the models:
Subqueries return no results, even when there should be
The text was updated successfully, but these errors were encountered: