Bump parameter limit on sqlcipher (matches change in pysqlite3).
This commit is contained in:
parent
925221c9fa
commit
6835366b0a
1 changed files with 3 additions and 0 deletions
3
setup.py
3
setup.py
|
|
@ -100,6 +100,9 @@ class AmalgationLibSqliteBuilder(build_ext):
|
||||||
# Required for SQLCipher.
|
# Required for SQLCipher.
|
||||||
ext.define_macros.append(("SQLITE_TEMP_STORE", "2"))
|
ext.define_macros.append(("SQLITE_TEMP_STORE", "2"))
|
||||||
|
|
||||||
|
# Increase the maximum number of "host parameters".
|
||||||
|
ext.define_macros.append(("SQLITE_MAX_VARIABLE_NUMBER", "250000"))
|
||||||
|
|
||||||
# Additional nice-to-have.
|
# Additional nice-to-have.
|
||||||
ext.define_macros.extend((
|
ext.define_macros.extend((
|
||||||
('SQLITE_DEFAULT_PAGE_SIZE', '4096'),
|
('SQLITE_DEFAULT_PAGE_SIZE', '4096'),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue