Fixed #1776 -- Fixed bug in DateQuerySet when the field is null. Thanks, Christopher Lenz

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2857 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-05-06 18:35:51 +00:00
parent 0b73811e26
commit 71f4568613
1 changed files with 1 additions and 1 deletions

View File

@ -492,7 +492,7 @@ class DateQuerySet(QuerySet):
from django.db.backends.util import typecast_timestamp
self._order_by = () # Clear this because it'll mess things up otherwise.
if self._field.null:
date_query._where.append('%s.%s IS NOT NULL' % \
self._where.append('%s.%s IS NOT NULL' % \
(backend.quote_name(self.model._meta.db_table), backend.quote_name(self._field.column)))
select, sql, params = self._get_sql_clause()
sql = 'SELECT %s %s GROUP BY 1 ORDER BY 1 %s' % \