Removed unneeded can_use_chunked_reads feature flag on SQLite.
Unneeded since c0e3c65b9d
.
This commit is contained in:
parent
51c24d8799
commit
e361621dbc
|
@ -10,10 +10,6 @@ from .base import Database
|
||||||
|
|
||||||
|
|
||||||
class DatabaseFeatures(BaseDatabaseFeatures):
|
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
|
test_db_allows_multiple_connections = False
|
||||||
supports_unspecified_pk = True
|
supports_unspecified_pk = True
|
||||||
supports_timezones = False
|
supports_timezones = False
|
||||||
|
|
Loading…
Reference in New Issue