Closed Bug 342915 Opened 18 years ago Closed 17 years ago

Update to version of SQLite that supports full-text indexing

Categories

(Toolkit :: Storage, enhancement)

enhancement
Not set
normal

Tracking

()

RESOLVED DUPLICATE of bug 413589

People

(Reporter: pamg.bugs, Unassigned)

Details

Attachments

(2 files, 4 obsolete files)

SQLite doesn't yet support full-text indexing, but it plans to (http://www.sqlite.org/cvstrac/wiki?p=FullTextIndex). When it does, we'll need to incorporate that version into our tree in order to index full pages.
Component: Places → Storage
Product: Firefox → Toolkit
QA Contact: places → storage
Target Milestone: Firefox 3 → mozilla1.9alpha1
Blocks: 342916
It looks like fts1 went in October and fts2 went in January as an 'experimental' module (not yet in the main build as of 2007/02/23). They're recommending not deploying fts1 as fts2 performance is much better. http://www.sqlite.org/cvstrac/wiki?p=FtsTwo
Unfortunately, I don't think I'll have the time to lead this effort.
Assignee: pamg.bugs → nobody
Depends on: 341137
Target Milestone: mozilla1.9alpha1 → ---
sqlite has been updated to 3.3.17 in bug 341137. But fts2 is still disabled (there's an #ifdef SQLITE_ENABLE_FTS2), and the actual fts2 code (http://www.sqlite.org/cvstrac/dir?d=sqlite/ext/fts2) is not even in the tree.
Depends on: 385067
Does this require any compile time defines?
I believe so. Also, iirc the amalgamation patch doesn't contain fts2, we'll probably need to patch that in locally.
goes to db/sqlite3/src
Two points: 1) FTS2 runs only when Shared Cached Mode is disabled. 2) The patch has so far got me only segmentation fault when trying to execute select statement, insertion and creation of table went alright. I'll debug as soon as possible
Comment on attachment 277199 [details] This is the amalgamated version of fts2 with the makefile what type of file did you attach? that's clearly not a patch ;)
I am not familiar with the process. I just attached all the source and the makefile. (In reply to comment #8) > (From update of attachment 277199 [details]) > what type of file did you attach? that's clearly not a patch ;) >
Comment on attachment 277199 [details] This is the amalgamated version of fts2 with the makefile A patch is a text file containing the differences between files. This is, as the filename says, a .tar.bz2 file. And the uncompressed fts2amal.c is rather large: 1.3 MB.
Attachment #277199 - Attachment is patch: false
Attachment #277199 - Attachment mime type: text/plain → application/x-bzip2
Attachment #277991 - Attachment mime type: text/x-c++src → text/plain
fyi, for storage you should be using xpcshell test cases unless you can't actually test it with that. The C++ test cases are not well maintained, and do not get run automatically after checkins.
Attached patch Makefile to run the patch 278700 (obsolete) (deleted) — Splinter Review
Attached patch patchified - w/ xpcshell tests (deleted) — Splinter Review
here's the amalgamated FTS2 module in patch form, with the tests converted to js. per Kunal, it's large because: Kunal Jain: it is 30,000 lines Kunal Jain: more than 50% of it comments Kunal Jain: grep "\*\*" fts2amal.c | wc -l Kunal Jain: 19483 Kunal Jain: about 20,000 lines comment however, turns out that shared cache mode and external modules don't jive: *** CHECK FAILED: unable to create fts2 virtual table: Cannot use virtual tables in shared-cache mode where we set shared cache mode: http://lxr.mozilla.org/mozilla/source/storage/src/mozStorageService.cpp#90
Attachment #277199 - Attachment is obsolete: true
Attachment #278700 - Attachment is obsolete: true
Attachment #278701 - Attachment is obsolete: true
hrm, so I think we really wanted shared cache at one point, but I wonder if we really have multiple DB connections pointing to the same database... Also, are there instructions on how to generate the amalgation with an upgraded sqlite? I *really* don't want to make it hard to upgrade again because we may end up like before being way behind because upgrading was difficult.
(In reply to comment #16) > hrm, so I think we really wanted shared cache at one point, but I wonder if we > really have multiple DB connections pointing to the same database... > > Also, are there instructions on how to generate the amalgation with an upgraded > sqlite? I *really* don't want to make it hard to upgrade again because we may > end up like before being way behind because upgrading was difficult. > Kunal, can you please detail how you created the amalgamated fts2 file?
There is a mkfts2amal.tcl file coming with the sqlite distribution. So add the following entry to the makefile, fts2amal.c: target_source $(TOP)/ext/fts2/mkfts2amal.tcl tcl $(TOP)/ext/fts2/mkfts2amal.tcl And run, make fts2amal.c to generate the amalgamated version. The logic behind this is that mkfts2amal.tcl requires presence of all the sources in a directory called tsrc, which target_source creates. IIRC, I did not make any change elsewhere.
The patch is huge and hence compressed
Blocks: 377244
So, we recently updated sqlite recently to 3.5.4. Would you be willing to update this patch to trunk?
Attachment #280589 - Attachment is patch: false
Attachment #280589 - Attachment mime type: text/plain → application/x-gzip
Parallel work happens in bug 413589.
Status: NEW → RESOLVED
Closed: 17 years ago
Resolution: --- → DUPLICATE
No longer blocks: 377244
No longer blocks: 342913
No longer blocks: 342916
No longer depends on: 341137, 385067
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: