From 18d89cc1f759bc926a2fa7a613c46d46fe3ca81f Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sun, 29 Jun 2008 11:50:04 +0000 Subject: Fixed #7323 -- Fixed a count() edge-case. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7787 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/sql/query.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'django/db/models/sql') diff --git a/django/db/models/sql/query.py b/django/db/models/sql/query.py index 0575f91a9f..b0c58b969a 100644 --- a/django/db/models/sql/query.py +++ b/django/db/models/sql/query.py @@ -1484,8 +1484,6 @@ class Query(object): if not self.select: select = Count() else: - assert len(self.select) == 1, \ - "Cannot add count col with multiple cols in 'select': %r" % self.select select = Count(self.select[0]) else: opts = self.model._meta -- cgit v1.3