diff options
Diffstat (limited to 'django/core/db/backends/postgresql.py')
| -rw-r--r-- | django/core/db/backends/postgresql.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/django/core/db/backends/postgresql.py b/django/core/db/backends/postgresql.py index f62f7b3585..c650660ad8 100644 --- a/django/core/db/backends/postgresql.py +++ b/django/core/db/backends/postgresql.py @@ -151,12 +151,6 @@ OPERATOR_MAPPING = { 'endswith': 'LIKE %s', 'istartswith': 'ILIKE %s', 'iendswith': 'ILIKE %s', - 'notcontains': 'NOT LIKE %s', - 'notstartswith': 'NOT LIKE %s', - 'notendswith': 'NOT LIKE %s', - 'inotcontains': 'NOT ILIKE %s', - 'inotstartswith': 'NOT ILIKE %s', - 'inotendswith': 'NOT ILIKE %s', } # This dictionary maps Field objects to their associated PostgreSQL column |
