summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-08-19 23:13:06 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-08-19 23:13:06 +0000
commit5a6426448f9813ef9abe17d59eb99e278f9461ee (patch)
tree465a3dcf0d461ac9caff7b6e817abbe888b2c9db /django/db/backends/postgresql
parent23a736dca9b2a631e841a9daff067558206e7965 (diff)
Refactored get_fulltext_search_sql() to DatabaseOperations.fulltext_search_sql(). Refs #5106
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5957 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/backends/postgresql')
-rw-r--r--django/db/backends/postgresql/base.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/django/db/backends/postgresql/base.py b/django/db/backends/postgresql/base.py
index b51501f570..cb83200776 100644
--- a/django/db/backends/postgresql/base.py
+++ b/django/db/backends/postgresql/base.py
@@ -140,9 +140,6 @@ def get_limit_offset_sql(limit, offset=None):
def get_random_function_sql():
return "RANDOM()"
-def get_fulltext_search_sql(field_name):
- raise NotImplementedError
-
def get_pk_default_value():
return "DEFAULT"