summaryrefslogtreecommitdiff
path: root/django/db/models/sql
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-10-14 02:16:38 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-10-14 02:16:38 +0000
commit0ebb752e89b312436b424065da05f2b1f8e22a22 (patch)
tree240280c67effa80832744865e6a4ca1b7e7a0a06 /django/db/models/sql
parentcae24af822cabba1ca35bf95150220f7aa8aca24 (diff)
queryset-refactor: Made all the changes needed to have count() work properly
with ValuesQuerySet. This is the general case of #2939. At this point, all the existing tests now pass on the branch (except for Oracle). It's a bit slower than before, though, and there are still a bunch of known bugs that aren't in the tests (or only exercised for some backends). git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@6497 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/models/sql')
-rw-r--r--django/db/models/sql/datastructures.py10
-rw-r--r--django/db/models/sql/query.py85
2 files changed, 65 insertions, 30 deletions
diff --git a/django/db/models/sql/datastructures.py b/django/db/models/sql/datastructures.py
index 46411599c8..af3db23e02 100644
--- a/django/db/models/sql/datastructures.py
+++ b/django/db/models/sql/datastructures.py
@@ -32,12 +32,12 @@ class Count(Aggregate):
"""
Perform a count on the given column.
"""
- def __init__(self, col=None, distinct=False):
+ def __init__(self, col='*', distinct=False):
"""
Set the column to count on (defaults to '*') and set whether the count
should be distinct or not.
"""
- self.col = col and col or '*'
+ self.col = col
self.distinct = distinct
def relabel_aliases(self, change_map):
@@ -49,13 +49,13 @@ class Count(Aggregate):
if not quote_func:
quote_func = lambda x: x
if isinstance(self.col, (list, tuple)):
- col = '%s.%s' % tuple([quote_func(c) for c in self.col])
+ col = ('%s.%s' % tuple([quote_func(c) for c in self.col]))
else:
col = self.col
if self.distinct:
- return 'COUNT(DISTINCT(%s))' % col
+ return 'COUNT(DISTINCT %s)' % col
else:
- return 'COUNT(%s)' % col
+ return 'COUNT(%s)' % self.col
class Date(object):
"""
diff --git a/django/db/models/sql/query.py b/django/db/models/sql/query.py
index 9f4edff7cf..dbbe47f23a 100644
--- a/django/db/models/sql/query.py
+++ b/django/db/models/sql/query.py
@@ -147,15 +147,17 @@ class Query(object):
def get_count(self):
"""
- Performs a COUNT() or COUNT(DISTINCT()) query, as appropriate, using
- the current filter constraints.
+ Performs a COUNT() query using the current filter constraints.
"""
- counter = self.clone()
- counter.clear_ordering()
- counter.clear_limits()
- counter.select_related = False
- counter.add_count_column()
- data = counter.execute_sql(SINGLE)
+ obj = self.clone()
+ obj.clear_ordering()
+ obj.clear_limits()
+ obj.select_related = False
+ if obj.distinct and len(obj.select) > 1:
+ obj = self.clone(CountQuery, _query=obj, where=WhereNode(self),
+ distinct=False)
+ obj.add_count_column()
+ data = obj.execute_sql(SINGLE)
if not data:
return 0
number = data[0]
@@ -176,7 +178,6 @@ class Query(object):
If 'with_limits' is False, any limit/offset information is not included
in the query.
"""
- qn = self.connection.ops.quote_name
self.pre_sql_setup()
result = ['SELECT']
if self.distinct:
@@ -185,21 +186,12 @@ class Query(object):
result.append(', '.join(out_cols))
result.append('FROM')
- for alias in self.tables:
- if not self.alias_map[alias][ALIAS_REFCOUNT]:
- continue
- name, alias, join_type, lhs, lhs_col, col = \
- self.alias_map[alias][ALIAS_JOIN]
- alias_str = (alias != name and ' AS %s' % alias or '')
- if join_type:
- result.append('%s %s%s ON (%s.%s = %s.%s)'
- % (join_type, qn(name), alias_str, qn(lhs),
- qn(lhs_col), qn(alias), qn(col)))
- else:
- result.append('%s%s' % (qn(name), alias_str))
- result.extend(self.extra_tables)
+ from_, f_params = self.get_from_clause()
+ result.extend(from_)
+ params = list(f_params)
- where, params = self.where.as_sql()
+ where, w_params = self.where.as_sql()
+ params.extend(w_params)
if where:
result.append('WHERE %s' % where)
if self.extra_where:
@@ -348,6 +340,30 @@ class Query(object):
for alias, col in extra_select])
return result
+ def get_from_clause(self):
+ """
+ Returns a list of strings that are joined together to go after the
+ "FROM" part of the query, as well as any extra parameters that need to
+ be included. Sub-classes, can override this to create a from-clause via
+ a "select", for example (e.g. CountQuery).
+ """
+ result = []
+ qn = self.connection.ops.quote_name
+ for alias in self.tables:
+ if not self.alias_map[alias][ALIAS_REFCOUNT]:
+ continue
+ name, alias, join_type, lhs, lhs_col, col = \
+ self.alias_map[alias][ALIAS_JOIN]
+ alias_str = (alias != name and ' AS %s' % alias or '')
+ if join_type:
+ result.append('%s %s%s ON (%s.%s = %s.%s)'
+ % (join_type, qn(name), alias_str, qn(lhs),
+ qn(lhs_col), qn(alias), qn(col)))
+ else:
+ result.append('%s%s' % (qn(name), alias_str))
+ result.extend(self.extra_tables)
+ return result, []
+
def get_grouping(self):
"""
Returns a tuple representing the SQL elements in the "group by" clause.
@@ -787,8 +803,17 @@ class Query(object):
if not self.distinct:
select = Count()
else:
- select = Count((self.table_map[self.model._meta.db_table][0],
- self.model._meta.pk.column), True)
+ opts = self.model._meta
+ if not self.select:
+ select = Count((self.join((None, opts.db_table, None, None)),
+ opts.pk.column), True)
+ else:
+ # Because of SQL portability issues, multi-column, distinct
+ # counts need a sub-query -- see get_count() for details.
+ assert len(self.select) == 1, \
+ "Cannot add count col with multiple cols in 'select'."
+ select = Count(self.select[0], True)
+
# Distinct handling is done in Count(), so don't do it at this
# level.
self.distinct = False
@@ -987,6 +1012,16 @@ class DateQuery(Query):
else:
self.group_by = [select]
+class CountQuery(Query):
+ """
+ A CountQuery knows how to take a normal query which would select over
+ multiple distinct columns and turn it into SQL that can be used on a
+ variety of backends (it requires a select in the FROM clause).
+ """
+ def get_from_clause(self):
+ result, params = self._query.as_sql()
+ return ['(%s) AS A1' % result], params
+
def find_field(name, field_list, related_query):
"""
Finds a field with a specific name in a list of field instances.