1
0
mirror of https://github.com/django/django.git synced 2025-03-09 00:42:40 +00:00

Removed unneeded can_use_chunked_reads feature flag on SQLite.

Unneeded since c0e3c65b9d1b26cfc38137b7666ef0e108aab77f.
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

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