[issue34916] Add create_window_function() to sqlite3.Connection

2020-06-15 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- keywords: +patch pull_requests: +20086 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/20903 ___ Python tracker

[issue34916] Add create_window_function() to sqlite3.Connection

2020-06-08 Thread Erlend Egeberg Aasland
Erlend Egeberg Aasland added the comment: Berker, are you still working on this? If not, I've got a proof-of-concept version of this w/unit tests ready for review. If you'd like to have a look at it, I can create a draft PR. -- nosy: +erlendaasland

[issue34916] Add create_window_function() to sqlite3.Connection

2019-08-12 Thread Charles
Charles added the comment: I've implemented this in a fork / standalone packaging of the Python 3.x sqlite3 module. You can find the relevant portions (and a couple unrelated changes) in this commit: https://github.com/coleifer/pysqlite3/commit/91c20016fd3fd3d1d7ade475893046958f7faa00

[issue34916] Add create_window_function() to sqlite3.Connection

2019-05-11 Thread Berker Peksag
Berker Peksag added the comment: Issue 35360 will cover updating our Windows and macOS installers. I'm retargeting this issue to add a create_window_function() method to the Connection object. I already have a WIP branch and am going to submit a PR later this weekend. -- assignee: