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 berker.peksag
Recipients abarry, anish.shah, berker.peksag, ced, ghaering, lelit, palaviv, r.david.murray, serhiy.storchaka
Date 2018-03-11.00:35:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1520728515.23.0.467229070634.issue27645@psf.upfronthosting.co.za>
In-reply-to
Content
Test also passed on my MBP with SQLite 3.22.0 and the following line

    rc = _pysqlite_seterror(bck_conn, NULL);

returns

    1 (SQLITE_ERROR)

with

    "SQL logic error"

Looging at https://www.sqlite.org/src/artifact?ln=on&name=faf17e60b43233c2, checkReadTransaction() returns

    sqlite3ErrorWithMsg(db, SQLITE_ERROR, "destination database is in use");
    return SQLITE_ERROR;

I've opened PR 6067 to skip the test under SQLite 3.8.7.1 for now.

Lele, could you take a look at this please? It's almost 4 am here I won't be able to work on this in the next 10-15 hours.
History
Date User Action Args
2018-03-11 00:35:15berker.peksagsetrecipients: + berker.peksag, ghaering, ced, r.david.murray, serhiy.storchaka, lelit, abarry, anish.shah, palaviv
2018-03-11 00:35:15berker.peksagsetmessageid: <1520728515.23.0.467229070634.issue27645@psf.upfronthosting.co.za>
2018-03-11 00:35:15berker.peksaglinkissue27645 messages
2018-03-11 00:35:14berker.peksagcreate