mirror of
https://github.com/django/django.git
synced 2025-09-10 04:26:30 +00:00
Fixed #593 -- Added 'search' DB-API lookup type, which does full-text index searches in MySQL
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3073 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
142e59b462
commit
168429d597
10 changed files with 31 additions and 1 deletions
|
@ -102,6 +102,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 "DROP CONSTRAINT"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue