diff --git a/django/db/models/sql/where.py b/django/db/models/sql/where.py index c70d34f94f..04e9a7c1bd 100644 --- a/django/db/models/sql/where.py +++ b/django/db/models/sql/where.py @@ -214,11 +214,3 @@ class SubqueryConstraint(object): query_compiler = query.get_compiler(connection=connection) return query_compiler.as_subquery_condition(self.alias, self.columns, compiler) - - def relabel_aliases(self, change_map): - self.alias = change_map.get(self.alias, self.alias) - - def clone(self): - return self.__class__( - self.alias, self.columns, self.targets, - self.query_object)