summaryrefslogtreecommitdiff
path: root/django/db/models/query_utils.py
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2021-04-24 01:07:18 -0400
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-04-28 12:13:55 +0200
commitc8b659430556dca0b2fe27cf2ea0f8290dbafecd (patch)
tree845518bb0b1cf5dab1f10fe333362d76fa26edcb /django/db/models/query_utils.py
parent4f600673d71cd99918755805042b7c039645f712 (diff)
downloaddjango-c8b659430556dca0b2fe27cf2ea0f8290dbafecd.tar.gz
Fixed #32632, Fixed #32657 -- Removed flawed support for Subquery deconstruction.
Subquery deconstruction support required implementing complex and expensive equality rules for sql.Query objects for little benefit as the latter cannot themselves be made deconstructible to their reference to model classes. Making Expression @deconstructible and not BaseExpression allows interested parties to conform to the "expression" API even if they are not deconstructible as it's only a requirement for expressions allowed in Model fields and meta options (e.g. constraints, indexes). Thanks Phillip Cutter for the report. This also fixes a performance regression in bbf141bcdc31f1324048af9233583a523ac54c94.
Diffstat (limited to 'django/db/models/query_utils.py')
-rw-r--r--django/db/models/query_utils.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/django/db/models/query_utils.py b/django/db/models/query_utils.py
index 43c93ce455..188b640850 100644
--- a/django/db/models/query_utils.py
+++ b/django/db/models/query_utils.py
@@ -5,6 +5,7 @@ Factored out from django.db.models.query to avoid making the main module very
large and/or so that they can be used by other modules without getting into
circular import difficulties.
"""
+import copy
import functools
import inspect
from collections import namedtuple
@@ -43,14 +44,11 @@ class Q(tree.Node):
if not(isinstance(other, Q) or getattr(other, 'conditional', False) is True):
raise TypeError(other)
- # If the other Q() is empty, ignore it and just use `self`.
- if not other:
+ if not self:
+ return other.copy() if hasattr(other, 'copy') else copy.copy(other)
+ elif isinstance(other, Q) and not other:
_, args, kwargs = self.deconstruct()
return type(self)(*args, **kwargs)
- # Or if this Q is empty, ignore it and just use `other`.
- elif not self:
- _, args, kwargs = other.deconstruct()
- return type(other)(*args, **kwargs)
obj = type(self)()
obj.connector = conn