diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-07-15 18:47:32 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-07-15 18:47:32 +0000 |
| commit | 3b37c8151a06a2bebd51007db30ad436811b82c8 (patch) | |
| tree | 2384a2408fcf22a7d014f3e8244f3845d17c54c1 /django/db/backends/__init__.py | |
| parent | e867c5a0cc29977e926a836079061bf6a817f9af (diff) | |
Fixed #7411 -- worked around some possible transaction conflicts in SQLite.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7926 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/backends/__init__.py')
| -rw-r--r-- | django/db/backends/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/db/backends/__init__.py b/django/db/backends/__init__.py index c5a0eb71fa..899a779673 100644 --- a/django/db/backends/__init__.py +++ b/django/db/backends/__init__.py @@ -53,6 +53,7 @@ class BaseDatabaseFeatures(object): time_field_needs_date = False interprets_empty_strings_as_nulls = False date_field_supports_time_value = True + can_use_chunked_reads = True class BaseDatabaseOperations(object): """ |
