summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/search.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/contrib/postgres/search.py')
-rw-r--r--django/contrib/postgres/search.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/django/contrib/postgres/search.py b/django/contrib/postgres/search.py
index 761ce3c70a..c404797a60 100644
--- a/django/contrib/postgres/search.py
+++ b/django/contrib/postgres/search.py
@@ -193,11 +193,6 @@ class SearchQuery(SearchQueryCombinable, Value):
template = '!!({})'.format(template)
return template, params
- def _combine(self, other, connector, reversed):
- combined = super()._combine(other, connector, reversed)
- combined.output_field = SearchQueryField()
- return combined
-
def __invert__(self):
return type(self)(self.value, config=self.config, invert=not self.invert)