Changed get_random_function_sql for ado_mssql backend to use RAND(), which is correct. Thanks, Jakub Labath

git-svn-id: http://code.djangoproject.com/svn/django/trunk@936 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-10-18 14:02:46 +00:00
parent b890e37ada
commit 8863e5dd11
1 changed files with 1 additions and 2 deletions

View File

@ -102,8 +102,7 @@ def get_limit_offset_sql(limit, offset=None):
return sql
def get_random_function_sql():
# TODO: This is a guess. Make sure this is correct.
return "RANDOM()"
return "RAND()"
def get_table_list(cursor):
raise NotImplementedError