diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-08-20 00:04:20 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-08-20 00:04:20 +0000 |
| commit | c44fb66551bf2f628648440ebc2010ad1135d9ac (patch) | |
| tree | 6a1f683b08189448c822d22f33306e10eb919036 /django/db/backends/sqlite3/base.py | |
| parent | aaf87602272c768d4d50d5e9a27f06f4b19164dd (diff) | |
Refactored get_random_function_sql() to DatabaseOperations.random_function_sql(). Refs #5106
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5962 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/backends/sqlite3/base.py')
| -rw-r--r-- | django/db/backends/sqlite3/base.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/django/db/backends/sqlite3/base.py b/django/db/backends/sqlite3/base.py index f17eb9686f..0ab928dfc4 100644 --- a/django/db/backends/sqlite3/base.py +++ b/django/db/backends/sqlite3/base.py @@ -118,9 +118,6 @@ def _sqlite_extract(lookup_type, dt): return None return str(getattr(dt, lookup_type)) -def get_random_function_sql(): - return "RANDOM()" - def get_start_transaction_sql(): return "BEGIN;" |
