This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Add support for SQLITE_DIRECTONLY and SQLITE_INNOCUOUS for user-defined functions
Type: Stage: patch review
Components: Library (Lib) Versions: Python 3.10, Python 3.9, Python 3.8
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: erlendaasland
Priority: normal Keywords: patch

Created on 2020-05-25 11:13 by erlendaasland, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 20398 open erlendaasland, 2020-05-25 20:52
Messages (1)
msg369871 - (view) Author: Erlend E. Aasland (erlendaasland) * (Python triager) Date: 2020-05-25 11:13
Add support for SQLITE_DIRECTONLY and SQLITE_INNOCUOUS in `sqlite3.create_function()` and `sqlite3.create_aggregate()`.

From the SQLite 3.31.0 changelog:
- Provide the ability to tag application-defined SQL functions with new properties SQLITE_INNOCUOUS or SQLITE_DIRECTONLY.


https://www.sqlite.org/c3ref/c_deterministic.html#sqlitedirectonly
https://www.sqlite.org/changes.html
History
Date User Action Args
2022-04-11 14:59:31adminsetgithub: 84943
2020-05-25 20:52:22erlendaaslandsetkeywords: + patch
stage: patch review
pull_requests: + pull_request19661
2020-05-25 11:13:46erlendaaslandcreate