This repository was archived by the owner on Sep 2, 2019. It is now read-only.
File tree 3 files changed +4
-4
lines changed 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ solution "SQLite3"
112
112
}
113
113
defines {
114
114
" _WINDOWS" ,
115
- " SQLITE_THREADSAFE=2 " , -- http://www.sqlite.org/compile.html#threadsafe
115
+ " SQLITE_THREADSAFE=1 " , -- http://www.sqlite.org/compile.html#threadsafe
116
116
" SQLITE_DEFAULT_PAGE_SIZE=4096" , -- better performance
117
117
" SQLITE_TEMP_STORE=2" , -- http://www.sqlite.org/tempfiles.html#tempstore
118
118
" SQLITE_DEFAULT_TEMP_CACHE_SIZE=1024" , -- http://www.sqlite.org/tempfiles.html#otheropt
@@ -231,6 +231,6 @@ solution "SQLite3"
231
231
}
232
232
links { PRJ_NAME_LIB }
233
233
defines {
234
- " SQLITE_THREADSAFE=0" , -- CLI is always single threaded, generates warnings because of a collision with previous definitions
234
+ -- "SQLITE_THREADSAFE=0", -- CLI is always single threaded, generates warnings because of a collision with previous definitions
235
235
" SQLITE_ENABLE_EXPLAIN_COMMENTS"
236
236
}
Original file line number Diff line number Diff line change @@ -136983,7 +136983,7 @@ SQLITE_PRIVATE int sqlite3Fts3EvalPhrasePoslist(
136983
136983
if( iDocid!=pCsr->iPrevId || pExpr->bEof ){
136984
136984
int rc = SQLITE_OK;
136985
136985
int bDescDoclist = pTab->bDescIdx; /* For DOCID_CMP macro */
136986
- int iMul; /* +1 if csr dir matches index dir, else -1 */
136986
+ /* int iMul; /* +1 if csr dir matches index dir, else -1 */
136987
136987
int bOr = 0;
136988
136988
u8 bEof = 0;
136989
136989
u8 bTreeEof = 0;
Original file line number Diff line number Diff line change 7
7
8
8
// Enable the user authentication feature
9
9
#ifndef SQLITE_USER_AUTHENTICATION
10
- #define SQLITE_USER_AUTHENTICATION
10
+ #define SQLITE_USER_AUTHENTICATION 1
11
11
#endif
12
12
13
13
#include "sqlite3.c"
You can’t perform that action at this time.
0 commit comments