mirror of
https://github.com/django/django.git
synced 2025-02-08 16:35:17 +00:00
Refs #3254 -- Removed unnecessary truth check in SearchVectorExact.as_sql().
Direct usage of the @@ operator is perfectly allowed.
This commit is contained in:
parent
5b09354954
commit
3d62ddb026
@ -19,7 +19,7 @@ class SearchVectorExact(Lookup):
|
||||
lhs, lhs_params = self.process_lhs(qn, connection)
|
||||
rhs, rhs_params = self.process_rhs(qn, connection)
|
||||
params = lhs_params + rhs_params
|
||||
return '%s @@ %s = true' % (lhs, rhs), params
|
||||
return '%s @@ %s' % (lhs, rhs), params
|
||||
|
||||
|
||||
class SearchVectorField(Field):
|
||||
|
Loading…
x
Reference in New Issue
Block a user