Skip to content

Commit

Permalink
Fixed #7097 -- dates() queries now work as expected with select_relat…
Browse files Browse the repository at this point in the history
…ed() -- that is, select_related() has no effect on the query. Thanks for reporting, Marco

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7486 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Apr 28, 2008
1 parent 9c53847 commit d649d0f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions django/db/models/sql/subqueries.py
Expand Up @@ -349,6 +349,7 @@ def add_date_select(self, column, lookup_type, order='ASC'):
self.connection.ops.date_trunc_sql)
self.select = [select]
self.select_fields = [None]
self.select_related = False # See #7097.
self.distinct = True
self.order_by = order == 'ASC' and [1] or [-1]

Expand Down

0 comments on commit d649d0f

Please sign in to comment.