Files
app-store-optimization/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13028.patch

18 lines
661 B
Diff

# django__django-13028
# Loki Mode Multi-Agent Patch
# Attempts: 1
--- a/django/db/models/sql/query.py
+++ b/django/db/models/sql/query.py
@@ -1125,7 +1125,10 @@ class Query(BaseExpression):
def check_filterable(self, expression):
"""Raise an error if expression cannot be used in a WHERE clause."""
- if not getattr(expression, 'filterable', True):
+ if (
+ hasattr(expression, 'resolve_expression') and
+ not getattr(expression, 'filterable', True)
+ ):
raise NotSupportedError(
expression.__class__.__name__ + ' is disallowed in the filter '
'clause.'