From 8863e5dd116faa25ce68c1733ac123199fbff2c5 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 18 Oct 2005 14:02:46 +0000 Subject: [PATCH] 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 --- django/core/db/backends/ado_mssql.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/django/core/db/backends/ado_mssql.py b/django/core/db/backends/ado_mssql.py index 944cf4b961..a13ac834b1 100644 --- a/django/core/db/backends/ado_mssql.py +++ b/django/core/db/backends/ado_mssql.py @@ -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