SQLite Forum

SQLite FTS5 table with 7 rows has _fts_docsize table with 9,141 rows
Login
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)

Dan.