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

Increase the iVersion for sqlite3_module needed for the xSavepoint,

xRelease, and xRollbackTo methods from 1 to 2.  This is so that it will
conform to published documentation.

FossilOrigin-Name: 0f4954e9793332573d4ffa0c1e199180f4cb990a
This commit is contained in:
drh
2011-05-06 00:19:57 +00:00
parent 367e84d089
commit e578b5967c
5 changed files with 13 additions and 13 deletions

View File

@ -3661,7 +3661,7 @@ static int fts3RollbackToMethod(sqlite3_vtab *pVtab, int iSavepoint){
}
static const sqlite3_module fts3Module = {
/* iVersion */ 1,
/* iVersion */ 2,
/* xCreate */ fts3CreateMethod,
/* xConnect */ fts3ConnectMethod,
/* xBestIndex */ fts3BestIndexMethod,