summaryrefslogtreecommitdiff
path: root/django/db/backends/sqlite3/base.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-08-19 22:55:05 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-08-19 22:55:05 +0000
commit29f67dce9efd048b915d70f905ee1c9d2bda5de9 (patch)
treea82e9c5b29410d7d21ce0b530b55160e611387e2 /django/db/backends/sqlite3/base.py
parent5f51f0524a8cd941ea757a0339978f3589193cbb (diff)
Refactored get_datetime_cast_sql() to DatabaseOperations.datetime_cast_sql(). Refs #5106
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5953 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/backends/sqlite3/base.py')
-rw-r--r--django/db/backends/sqlite3/base.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/django/db/backends/sqlite3/base.py b/django/db/backends/sqlite3/base.py
index 6caf01dcac..3e99ac72c7 100644
--- a/django/db/backends/sqlite3/base.py
+++ b/django/db/backends/sqlite3/base.py
@@ -115,9 +115,6 @@ def _sqlite_extract(lookup_type, dt):
return None
return str(getattr(dt, lookup_type))
-def get_datetime_cast_sql():
- return None
-
def get_limit_offset_sql(limit, offset=None):
sql = "LIMIT %s" % limit
if offset and offset != 0: