Skip to content

Commit b62c58d

Browse files
bmispelonfelixxm
authored andcommitted
Removed unnecessary SearchQuery._combine().
Unnecessary since its introduction in 2d877da.
1 parent 40a64dd commit b62c58d

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

django/contrib/postgres/search.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -193,11 +193,6 @@ def as_sql(self, compiler, connection):
193193
template = '!!({})'.format(template)
194194
return template, params
195195

196-
def _combine(self, other, connector, reversed):
197-
combined = super()._combine(other, connector, reversed)
198-
combined.output_field = SearchQueryField()
199-
return combined
200-
201196
def __invert__(self):
202197
return type(self)(self.value, config=self.config, invert=not self.invert)
203198

0 commit comments

Comments
 (0)