diff options
author | drh <drh@noemail.net> | 2016-01-14 14:33:36 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2016-01-14 14:33:36 +0000 |
commit | 0ea94db612e0f2348b45dafcedf21d9a8f68c60b (patch) | |
tree | 81c4aed77941234cc3514645a9107ea589a050de /ext | |
parent | d625adb8dbf0558b8575a9e6ee5d0e74489253ef (diff) | |
download | sqlite-0ea94db612e0f2348b45dafcedf21d9a8f68c60b.tar.gz sqlite-0ea94db612e0f2348b45dafcedf21d9a8f68c60b.zip |
Yet another change to FTS5 trying to get it to merge successfully into sessions.
FossilOrigin-Name: 8dedff3b9ac3e6bf9c131fee19f7d26dc1ebd61f
Diffstat (limited to 'ext')
-rw-r--r-- | ext/fts5/fts5_index.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/fts5/fts5_index.c b/ext/fts5/fts5_index.c index 436812879..2f5b3bdaa 100644 --- a/ext/fts5/fts5_index.c +++ b/ext/fts5/fts5_index.c @@ -4856,7 +4856,7 @@ int sqlite3Fts5IndexClose(Fts5Index *p){ ** size. Return the number of bytes in the nChar character prefix of the ** buffer, or 0 if there are less than nChar characters in total. */ -static int sqlite3Fts5IndexCharlenToBytelen( +int sqlite3Fts5IndexCharlenToBytelen( const char *p, int nByte, int nChar @@ -6092,4 +6092,3 @@ int sqlite3Fts5IndexInit(sqlite3 *db){ } return rc; } - |