1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Close sqlite3_blob objects on xSync rather than waiting until xCommit.

FossilOrigin-Name: 95ee745fceb4a48c683f34c404c380fe5e7d684a
This commit is contained in:
drh
2017-02-04 13:12:12 +00:00
parent 3accc7e1af
commit 010e312f8f
3 changed files with 11 additions and 8 deletions

View File

@ -3294,7 +3294,7 @@ static sqlite3_module rtreeModule = {
rtreeRowid, /* xRowid - read data */
rtreeUpdate, /* xUpdate - write data */
rtreeBeginTransaction, /* xBegin - begin transaction */
0, /* xSync - sync transaction */
rtreeEndTransaction, /* xSync - sync transaction */
rtreeEndTransaction, /* xCommit - commit transaction */
rtreeEndTransaction, /* xRollback - rollback transaction */
0, /* xFindFunction - function overloading */