Added '*' to quote_cache

The commit for #18333 missed quote_cache default value for *.
Refs #18333.
This commit is contained in:
Anssi Kääriäinen 2013-09-24 23:00:31 +03:00
parent 68540fe4df
commit 9027da65d3
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ class SQLCompiler(object):
self.query = query
self.connection = connection
self.using = using
self.quote_cache = {}
self.quote_cache = {'*': '*'}
# When ordering a queryset with distinct on a column not part of the
# select set, the ordering column needs to be added to the select
# clause. This information is needed both in SQL construction and