mirror of
https://github.com/django/django.git
synced 2025-07-13 16:25:13 +00:00
Removed unnecessary casting when using builtin lookups on PostgreSQL.
This commit is contained in:
parent
7a2c27112d
commit
658f1e81a7
1 changed files with 2 additions and 0 deletions
|
@ -83,6 +83,8 @@ class DatabaseOperations(BaseDatabaseOperations):
|
||||||
'istartswith', 'endswith', 'iendswith', 'regex', 'iregex'):
|
'istartswith', 'endswith', 'iendswith', 'regex', 'iregex'):
|
||||||
if internal_type in ('IPAddressField', 'GenericIPAddressField'):
|
if internal_type in ('IPAddressField', 'GenericIPAddressField'):
|
||||||
lookup = "HOST(%s)"
|
lookup = "HOST(%s)"
|
||||||
|
elif internal_type in ('CharField', 'TextField'):
|
||||||
|
lookup = '%s'
|
||||||
else:
|
else:
|
||||||
lookup = "%s::text"
|
lookup = "%s::text"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue