Refactored get_deferrable_sql() to DatabaseOperations.deferrable_sql(). Refs #5106

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5955 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-08-19 23:03:38 +00:00
parent ed8e392f77
commit 8e84d35d38
10 changed files with 25 additions and 28 deletions

View file

@ -161,9 +161,6 @@ def get_limit_offset_sql(limit, offset=None):
def get_random_function_sql():
return "RAND()"
def get_deferrable_sql():
return ""
def get_fulltext_search_sql(field_name):
return 'MATCH (%s) AGAINST (%%s IN BOOLEAN MODE)' % field_name