Fix FTS3 so that it works even without SQLITE_DEBUG.

FossilOrigin-Name: a18c103121529c2e3c6a8ada16a4c40d14080670
This commit is contained in:
drh 2012-03-26 14:36:42 +00:00
parent 6f4df8ac83
commit cbf9450404
3 changed files with 9 additions and 9 deletions

View File

@ -3160,7 +3160,7 @@ static int fts3SyncMethod(sqlite3_vtab *pVtab){
** Implementation of xBegin() method. This is a no-op.
*/
static int fts3BeginMethod(sqlite3_vtab *pVtab){
TESTONLY( Fts3Table *p = (Fts3Table*)pVtab );
Fts3Table *p = (Fts3Table*)pVtab;
UNUSED_PARAMETER(pVtab);
assert( p->pSegments==0 );
assert( p->nPendingData==0 );

View File

@ -1,5 +1,5 @@
C Modify\sthe\sFTS\sintegrity-check\sso\sthat\sthe\schecksums\sdo\snot\sdepend\son\sthe\sresults\sof\ssigned\sinteger\soverflow,\swhich\sis\sundefined\sin\sC.
D 2012-03-26T10:57:31.278
C Fix\sFTS3\sso\sthat\sit\sworks\seven\swithout\sSQLITE_DEBUG.
D 2012-03-26T14:36:42.908
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
F Makefile.in 2f37e468503dbe79d35c9f6dffcf3fae1ae9ec20
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@ -63,7 +63,7 @@ F ext/fts3/README.content fdc666a70d5257a64fee209f97cf89e0e6e32b51
F ext/fts3/README.syntax a19711dc5458c20734b8e485e75fb1981ec2427a
F ext/fts3/README.tokenizers 998756696647400de63d5ba60e9655036cb966e9
F ext/fts3/README.txt 8c18f41574404623b76917b9da66fcb0ab38328d
F ext/fts3/fts3.c a36f2add4c795b9e1ca1e1a16bd1e45c697a1f37
F ext/fts3/fts3.c f2dd409e14eb84ff560a8bfe9c8fc7c93a853c2c
F ext/fts3/fts3.h 3a10a0af180d502cecc50df77b1b22df142817fe
F ext/fts3/fts3Int.h 133e5c613ac6920be5b914d43acc1478df1332e1
F ext/fts3/fts3_aux.c 5205182bd8f372782597888156404766edf5781e
@ -999,7 +999,7 @@ F tool/tostr.awk e75472c2f98dd76e06b8c9c1367f4ab07e122d06
F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
F tool/warnings-clang.sh 9f406d66e750e8ac031c63a9ef3248aaa347ef2a
F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
P 64e8a116f39434a3b7347f01a47f88eef3276742
R b3b4e0fd75a1473fbbf1af679fdf9753
U dan
Z df6c781d7592577597c979769aed212b
P f907fc3fb387e74bb66babcbf050748cb253a6fa
R c007d11e260643139d517e8dc5ea9d00
U drh
Z d7453c1ea386bbab453c1602af9f7003

View File

@ -1 +1 @@
f907fc3fb387e74bb66babcbf050748cb253a6fa
a18c103121529c2e3c6a8ada16a4c40d14080670