diff options
author | Collin Anderson <cmawebsite@gmail.com> | 2014-11-21 11:38:02 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2014-11-21 16:44:50 -0500 |
commit | d4ea4eea7995edd75061777fe7223c5871d6938c (patch) | |
tree | fab2c36b613bfe5beb569758840af7956307c0cf /django/db/backends/mysql/compiler.py | |
parent | c7087bc777a078f71a0705d9d0eba51d2679a206 (diff) | |
download | django-d4ea4eea7995edd75061777fe7223c5871d6938c.tar.gz |
Fixed #23889 -- Added more usage of quote_name_unless_alias() to avoid deprecation warnings.
Diffstat (limited to 'django/db/backends/mysql/compiler.py')
-rw-r--r-- | django/db/backends/mysql/compiler.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/django/db/backends/mysql/compiler.py b/django/db/backends/mysql/compiler.py index 56bea51add..ef1be1d069 100644 --- a/django/db/backends/mysql/compiler.py +++ b/django/db/backends/mysql/compiler.py @@ -2,7 +2,8 @@ from django.db.models.sql import compiler class SQLCompiler(compiler.SQLCompiler): - def as_subquery_condition(self, alias, columns, qn): + def as_subquery_condition(self, alias, columns, compiler): + qn = compiler.quote_name_unless_alias qn2 = self.connection.ops.quote_name sql, params = self.as_sql() return '(%s) IN (%s)' % (', '.join('%s.%s' % (qn(alias), qn2(column)) for column in columns), sql), params |