diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-11-25 20:08:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-25 20:08:46 +0100 |
| commit | e361621dbc77b5d926ec4deff5e7c792a61db71e (patch) | |
| tree | 965a00807b9abfab787d7c27cb05ca7327db32c1 | |
| parent | 51c24d8799fb09f04d0a5deb713eaeceb20d15c7 (diff) | |
Removed unneeded can_use_chunked_reads feature flag on SQLite.
Unneeded since c0e3c65b9d1b26cfc38137b7666ef0e108aab77f.
| -rw-r--r-- | django/db/backends/sqlite3/features.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/django/db/backends/sqlite3/features.py b/django/db/backends/sqlite3/features.py index 2743ec547a..c22616030f 100644 --- a/django/db/backends/sqlite3/features.py +++ b/django/db/backends/sqlite3/features.py @@ -10,10 +10,6 @@ from .base import Database class DatabaseFeatures(BaseDatabaseFeatures): - # SQLite can read from a cursor since SQLite 3.6.5, subject to the caveat - # that statements within a connection aren't isolated from each other. See - # https://sqlite.org/isolation.html. - can_use_chunked_reads = True test_db_allows_multiple_connections = False supports_unspecified_pk = True supports_timezones = False |
