Commit 9027da65 authored by Anssi Kääriäinen's avatar Anssi Kääriäinen
Browse files

Added '*' to quote_cache

The commit for #18333 missed quote_cache default value for *.
Refs #18333.
parent 68540fe4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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