summaryrefslogtreecommitdiff
path: root/django/core/db/backends/postgresql.py
diff options
context:
space:
mode:
authorGeorg Bauer <gb@hugo.westfalen.de>2005-12-04 18:54:44 +0000
committerGeorg Bauer <gb@hugo.westfalen.de>2005-12-04 18:54:44 +0000
commitc464e57da93ffd62261317abfb7a36ec23ddab64 (patch)
tree8832d8976a336057a9d5f28b051527bcd0309688 /django/core/db/backends/postgresql.py
parente19edfbea0801e5217e2b1c97317008975b0f3b2 (diff)
reverted changes from [1534] and [1536] regarding ticket #966
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1541 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core/db/backends/postgresql.py')
-rw-r--r--django/core/db/backends/postgresql.py6
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