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)