summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/contrib/postgres/constraints.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/postgres/constraints.py b/django/contrib/postgres/constraints.py
index 2e6f7f7998..f71a587430 100644
--- a/django/contrib/postgres/constraints.py
+++ b/django/contrib/postgres/constraints.py
@@ -205,7 +205,7 @@ class ExclusionConstraint(BaseConstraint):
if isinstance(expression, F):
if exclude and expression.name in exclude:
return
- rhs_expression = replacement_map.get(expression.name, expression)
+ rhs_expression = expression.replace_references(replacement_map)
else:
rhs_expression = expression.replace_references(replacement_map)
if exclude: