MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / endBulkNodeLoad

Method endBulkNodeLoad

src/db/index.ts:149–152  ·  view source on GitHub ↗

* 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).

()

Source from the content-addressed store, hash-verified

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

Callers 2

healBulkNodeLoadMethod · 0.95
indexAllMethod · 0.80

Calls 2

recreateFtsTriggersMethod · 0.95
execMethod · 0.65

Tested by

no test coverage detected