* Leave bulk-load mode: rebuild the whole FTS index from the nodes table in * one pass (far cheaper than per-row trigger firings), then recreate the * triggers by re-running schema.sql (idempotent — everything in it is * IF NOT EXISTS).
()
| 147 | * IF NOT EXISTS). |
| 148 | */ |
| 149 | endBulkNodeLoad(): void { |
| 150 | this.db.exec(`INSERT INTO nodes_fts(nodes_fts) VALUES('rebuild')`); |
| 151 | this.recreateFtsTriggers(); |
| 152 | } |
| 153 | |
| 154 | /** |
| 155 | * NON-UNIQUE secondary indexes maintained per-row during the parse phase's |
no test coverage detected