mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-28 23:53:37 +00:00
add db_support_partial_index flag to db.py
(required by 3rd party lib diskcache)
This commit is contained in:
parent
525c887d91
commit
009db05cc7
1 changed files with 1 additions and 0 deletions
|
@ -41,6 +41,7 @@ if False:
|
|||
|
||||
db_lock = threading.Lock()
|
||||
db_support_multiple_insert = (3, 7, 11) <= sqlite3.sqlite_version_info # type: bool
|
||||
db_support_partial_index = (3, 8, 0) <= sqlite3.sqlite_version_info # type: bool
|
||||
db_support_column_rename = (3, 25, 0) <= sqlite3.sqlite_version_info # type: bool
|
||||
db_support_upsert = (3, 25, 0) <= sqlite3.sqlite_version_info # type: bool
|
||||
db_supports_backup = hasattr(sqlite3.Connection, 'backup') and (3, 6, 11) <= sqlite3.sqlite_version_info # type: bool
|
||||
|
|
Loading…
Reference in a new issue