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.

Author Big Stone
Recipients Big Stone, ghaering, ronaldoussoren
Date 2018-10-09.18:19:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1539109154.29.0.545547206417.issue34916@psf.upfronthosting.co.za>
In-reply-to
Content
hum. On Windows at least, just drop-in replace the sqlite3.dll per the new sqlite-3.25 dll and the window functions just works.
==> I don't see the need for your latter point, at least on Windows.

checked with sqlite_bro on Python-3.6.7rc1 with example:
CREATE TABLE t2(a, b);
INSERT INTO t2 VALUES('a', 'one'), 
                     ('a', 'two'), 
                     ('a', 'three'), 
                     ('b', 'four'), 
                     ('c', 'five'), 
                     ('c', 'six');
SELECT a                        AS a,
       row_number() OVER win    AS row_number,
       rank() OVER win          AS rank,
       dense_rank() OVER win    AS dense_rank,
       percent_rank() OVER win  AS percent_rank,
       cume_dist() OVER win     AS cume_dist
FROM t2
WINDOW win AS (ORDER BY a);
History
Date User Action Args
2018-10-09 18:19:14Big Stonesetrecipients: + Big Stone, ghaering, ronaldoussoren
2018-10-09 18:19:14Big Stonesetmessageid: <1539109154.29.0.545547206417.issue34916@psf.upfronthosting.co.za>
2018-10-09 18:19:14Big Stonelinkissue34916 messages
2018-10-09 18:19:14Big Stonecreate