From e976ed1f7910fad03704f88853c5c5b36cbab134 Mon Sep 17 00:00:00 2001 From: Joseph Kocherhans Date: Tue, 6 Jun 2006 01:21:49 +0000 Subject: multi-auth: Merged to [3085] git-svn-id: http://code.djangoproject.com/svn/django/branches/multi-auth@3086 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/backends/sqlite3/base.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'django/db/backends/sqlite3/base.py') diff --git a/django/db/backends/sqlite3/base.py b/django/db/backends/sqlite3/base.py index 7c3018aed9..7b51967416 100644 --- a/django/db/backends/sqlite3/base.py +++ b/django/db/backends/sqlite3/base.py @@ -124,6 +124,9 @@ 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_drop_foreignkey_sql(): return "" -- cgit v1.3