We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://sqlite.org/forum/forumpost/fa777fff86
Easiest thing would be to run a 'rebuild' to rebuild the FTS index from scratch based on the contents of the content table. i.e. INSERT INTO licenses_fts(licenses_fts) VALUES('rebuild'); https://www.sqlite.org/fts5.html#the_rebuild_command
Easiest thing would be to run a 'rebuild' to rebuild the FTS index from scratch based on the contents of the content table. i.e.
INSERT INTO licenses_fts(licenses_fts) VALUES('rebuild');
https://www.sqlite.org/fts5.html#the_rebuild_command
The text was updated successfully, but these errors were encountered:
table.rebuild_fts() method, refs #155
4c0f793
For the command version:
sqlite-utils rebuild-fts mydb.db
This will rebuild all detected FTS tables. You can also specify one or more explicit tables:
sqlite-utils rebuild-fts mydb.db dogs
Sorry, something went wrong.
.optimize() no longer cleans up _docsize
64799df
This isn't necessary any more since the new .rebuild_fts() method can achieve the same thing. Refs #155, #153
I'm going to update sqlite-utils optimize to also take an optional list of tables, for consistency.
sqlite-utils optimize
optimize command now accepts optional tables, refs #155
7654859
176f4e0
Release 2.18
6be6126
Refs #145. #155
No branches or pull requests
https://sqlite.org/forum/forumpost/fa777fff86
The text was updated successfully, but these errors were encountered: