mirror of
https://github.com/django/django.git
synced 2025-01-26 10:09:42 +00:00
Added '*' to quote_cache
The commit for #18333 missed quote_cache default value for *. Refs #18333.
This commit is contained in:
parent
68540fe4df
commit
9027da65d3
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user