mirror of
https://github.com/django/django.git
synced 2025-09-11 04:56:51 +00:00
Fixed #3390: the serializer can now contain forward references. Thanks, Russ.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4610 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
a30e3fca48
commit
51f39d59bd
11 changed files with 60 additions and 28 deletions
|
@ -174,6 +174,9 @@ 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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue