Removed unneeded can_use_chunked_reads feature flag on SQLite.

Unneeded since c0e3c65b9d.
This commit is contained in:
Mariusz Felisiak 2021-11-25 20:08:46 +01:00 committed by GitHub
parent 51c24d8799
commit e361621dbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -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