diff --git a/django/db/models/query.py b/django/db/models/query.py index b650016aabb..29ecf169510 100644 --- a/django/db/models/query.py +++ b/django/db/models/query.py @@ -1151,10 +1151,6 @@ class QuerySet(object): return clone.query.get_compiler(connection=connection).as_nested_sql() raise ValueError("Can't do subqueries with queries on different DBs.") - # When used as part of a nested query, a queryset will never be an "always - # empty" result. - value_annotation = True - def _add_hints(self, **hints): """ Update hinting information for later use by Routers