diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-02-26 20:17:26 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-02-26 20:17:26 +0000 |
| commit | 6df023007781e96fa1cfa8dfce0040cc9d7da871 (patch) | |
| tree | a314d41c8e3a32fa030f1e7e63efb437579cf07f /django/db/backends/sqlite3/base.py | |
| parent | a9fafd521f13c62eec78c27414262deda62993d3 (diff) | |
newforms-admin: Merged to [4616]
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@4617 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, 3 insertions, 0 deletions
diff --git a/django/db/backends/sqlite3/base.py b/django/db/backends/sqlite3/base.py index 891320160f..db0393782d 100644 --- a/django/db/backends/sqlite3/base.py +++ b/django/db/backends/sqlite3/base.py @@ -139,6 +139,9 @@ def get_limit_offset_sql(limit, offset=None): def get_random_function_sql(): return "RANDOM()" +def get_deferrable_sql(): + return "" + def get_fulltext_search_sql(field_name): raise NotImplementedError |
