From e361621dbc77b5d926ec4deff5e7c792a61db71e Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Thu, 25 Nov 2021 20:08:46 +0100 Subject: [PATCH] Removed unneeded can_use_chunked_reads feature flag on SQLite. Unneeded since c0e3c65b9d1b26cfc38137b7666ef0e108aab77f. --- django/db/backends/sqlite3/features.py | 4 ---- 1 file changed, 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