diff options
| author | Ian Kelly <ian.g.kelly@gmail.com> | 2009-03-13 21:04:48 +0000 |
|---|---|---|
| committer | Ian Kelly <ian.g.kelly@gmail.com> | 2009-03-13 21:04:48 +0000 |
| commit | 83c1572cc47283b97c78a4b695788bcb755ca358 (patch) | |
| tree | 31d03c4a1fd56ca9c00b967887818a54e8a800a5 /django/db/backends/__init__.py | |
| parent | 0ae95f80b4030b6ad716838f45da45b9c34e612a (diff) | |
Fixed #10488: fixed DB cache backend test failures in Oracle.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10051 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/backends/__init__.py')
| -rw-r--r-- | django/db/backends/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/django/db/backends/__init__.py b/django/db/backends/__init__.py index 1c057c3358..6dcc17f4f2 100644 --- a/django/db/backends/__init__.py +++ b/django/db/backends/__init__.py @@ -255,6 +255,13 @@ class BaseDatabaseOperations(object): """ return 'DEFAULT' + def process_clob(self, value): + """ + Returns the value of a CLOB column, for backends that return a locator + object that requires additional processing. + """ + return value + def return_insert_id(self): """ For backends that support returning the last insert ID as part |
