惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
I
InfoQ
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
IT之家
IT之家
云风的 BLOG
云风的 BLOG
有赞技术团队
有赞技术团队
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
The GitHub Blog
The GitHub Blog
博客园_首页
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
G
Google Developers Blog
WordPress大学
WordPress大学
B
Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
量子位
Apple Machine Learning Research
Apple Machine Learning Research
N
Netflix TechBlog - Medium
Last Week in AI
Last Week in AI
博客园 - 聂微东
Jina AI
Jina AI

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(memory): add LIKE fallback when FTS5 MATCH throws and...
yelog · 2026-04-29 · via Recent Commits to openclaw:main

@@ -179,6 +179,247 @@ describe("searchKeyword trigram fallback", () => {

179179

});

180180

});

181181182+

describe("searchKeyword FTS MATCH fallback", () => {

183+

const { DatabaseSync } = requireNodeSqlite();

184+185+

function supportsFts(): boolean {

186+

const db = new DatabaseSync(":memory:");

187+

try {

188+

const result = ensureMemoryIndexSchema({

189+

db,

190+

embeddingCacheTable: "embedding_cache",

191+

cacheEnabled: false,

192+

ftsTable: "chunks_fts",

193+

ftsEnabled: true,

194+

});

195+

return result.ftsAvailable;

196+

} finally {

197+

db.close();

198+

}

199+

}

200+201+

function createFtsDb() {

202+

const db = new DatabaseSync(":memory:");

203+

const result = ensureMemoryIndexSchema({

204+

db,

205+

embeddingCacheTable: "embedding_cache",

206+

cacheEnabled: false,

207+

ftsTable: "chunks_fts",

208+

ftsEnabled: true,

209+

});

210+

if (!result.ftsAvailable) {

211+

db.close();

212+

throw new Error(`FTS5 unavailable: ${result.ftsError ?? "unknown error"}`);

213+

}

214+

return db;

215+

}

216+217+

const itWithFts = supportsFts() ? it : it.skip;

218+219+

itWithFts("falls back to LIKE search when FTS MATCH throws", async () => {

220+

const db = createFtsDb();

221+

try {

222+

const insert = db.prepare(

223+

"INSERT INTO chunks_fts (text, id, path, source, model, start_line, end_line) VALUES (?, ?, ?, ?, ?, ?, ?)",

224+

);

225+

insert.run(

226+

"The Agent framework handles API calls and cron jobs",

227+

"1",

228+

"doc.md",

229+

"sessions",

230+

"mock-embed",

231+

1,

232+

5,

233+

);

234+

insert.run(

235+

"Deploy the database cluster on Hetzner",

236+

"2",

237+

"ops.md",

238+

"sessions",

239+

"mock-embed",

240+

1,

241+

3,

242+

);

243+244+

// Simulate a buildFtsQuery that produces a broken MATCH expression

245+

const brokenBuildFtsQuery = () => "BROKEN_QUERY_SYNTAX <<<";

246+247+

const results = await searchKeyword({

248+

db,

249+

ftsTable: "chunks_fts",

250+

providerModel: "mock-embed",

251+

query: "Agent",

252+

ftsTokenizer: "unicode61",

253+

limit: 10,

254+

snippetMaxChars: 200,

255+

sourceFilter: { sql: "", params: [] },

256+

buildFtsQuery: brokenBuildFtsQuery,

257+

bm25RankToScore: bm25RankToScore,

258+

});

259+260+

// LIKE fallback should find "Agent" in the first row

261+

expect(results.length).toBeGreaterThan(0);

262+

expect(results[0]?.id).toBe("1");

263+

// Fallback results have textScore=1 (no BM25 ranking)

264+

expect(results[0]?.textScore).toBe(1);

265+

} finally {

266+

db.close();

267+

}

268+

});

269+270+

itWithFts("returns BM25-scored results when FTS MATCH succeeds", async () => {

271+

const db = createFtsDb();

272+

try {

273+

const insert = db.prepare(

274+

"INSERT INTO chunks_fts (text, id, path, source, model, start_line, end_line) VALUES (?, ?, ?, ?, ?, ?, ?)",

275+

);

276+

insert.run(

277+

"The Transformer architecture powers modern LLMs",

278+

"1",

279+

"ml.md",

280+

"memory",

281+

"mock-embed",

282+

1,

283+

3,

284+

);

285+286+

const results = await searchKeyword({

287+

db,

288+

ftsTable: "chunks_fts",

289+

providerModel: "mock-embed",

290+

query: "Transformer",

291+

ftsTokenizer: "unicode61",

292+

limit: 10,

293+

snippetMaxChars: 200,

294+

sourceFilter: { sql: "", params: [] },

295+

buildFtsQuery,

296+

bm25RankToScore,

297+

});

298+299+

expect(results.length).toBe(1);

300+

expect(results[0]?.id).toBe("1");

301+

// BM25 score should be a real computed value, not the fallback default

302+

expect(results[0]?.textScore).toBeGreaterThan(0);

303+

expect(results[0]?.textScore).toBeLessThan(1);

304+

} finally {

305+

db.close();

306+

}

307+

});

308+309+

itWithFts("applies source filter in LIKE fallback", async () => {

310+

const db = createFtsDb();

311+

try {

312+

const insert = db.prepare(

313+

"INSERT INTO chunks_fts (text, id, path, source, model, start_line, end_line) VALUES (?, ?, ?, ?, ?, ?, ?)",

314+

);

315+

insert.run("Agent handles API calls", "1", "doc.md", "sessions", "mock-embed", 1, 3);

316+

insert.run("Agent design patterns", "2", "notes.md", "memory", "mock-embed", 1, 3);

317+318+

const brokenBuildFtsQuery = () => "BROKEN <<<";

319+

const results = await searchKeyword({

320+

db,

321+

ftsTable: "chunks_fts",

322+

providerModel: "mock-embed",

323+

query: "Agent",

324+

ftsTokenizer: "unicode61",

325+

limit: 10,

326+

snippetMaxChars: 200,

327+

sourceFilter: { sql: " AND source IN (?)", params: ["sessions"] },

328+

buildFtsQuery: brokenBuildFtsQuery,

329+

bm25RankToScore,

330+

});

331+332+

expect(results.length).toBe(1);

333+

expect(results[0]?.id).toBe("1");

334+

expect(results[0]?.source).toBe("sessions");

335+

} finally {

336+

db.close();

337+

}

338+

});

339+340+

itWithFts("splits multi-word query into per-token LIKE clauses in fallback", async () => {

341+

const db = createFtsDb();

342+

try {

343+

const insert = db.prepare(

344+

"INSERT INTO chunks_fts (text, id, path, source, model, start_line, end_line) VALUES (?, ?, ?, ?, ?, ?, ?)",

345+

);

346+

// "Agent" and "cron" appear in this row but not adjacent

347+

insert.run(

348+

"The Agent framework handles API calls and cron jobs",

349+

"1",

350+

"doc.md",

351+

"sessions",

352+

"mock-embed",

353+

1,

354+

5,

355+

);

356+

// Only "Agent" appears in this row

357+

insert.run(

358+

"Agent design patterns for microservices",

359+

"2",

360+

"arch.md",

361+

"sessions",

362+

"mock-embed",

363+

1,

364+

3,

365+

);

366+367+

// A single-substring LIKE '%Agent cron%' would miss row 1 because

368+

// the words are not adjacent. Per-token LIKE should find it.

369+

const brokenBuildFtsQuery = () => "BROKEN <<<";

370+

const results = await searchKeyword({

371+

db,

372+

ftsTable: "chunks_fts",

373+

providerModel: "mock-embed",

374+

query: "Agent cron",

375+

ftsTokenizer: "unicode61",

376+

limit: 10,

377+

snippetMaxChars: 200,

378+

sourceFilter: { sql: "", params: [] },

379+

buildFtsQuery: brokenBuildFtsQuery,

380+

bm25RankToScore: bm25RankToScore,

381+

});

382+383+

// Per-token fallback: both "Agent" AND "cron" must match

384+

expect(results.length).toBe(1);

385+

expect(results[0]?.id).toBe("1");

386+

} finally {

387+

db.close();

388+

}

389+

});

390+391+

itWithFts("logs warning when MATCH fallback is used", async () => {

392+

const db = createFtsDb();

393+

const warnSpy = vi.spyOn(console, "warn").mockImplementation(() => {});

394+

try {

395+

const insert = db.prepare(

396+

"INSERT INTO chunks_fts (text, id, path, source, model, start_line, end_line) VALUES (?, ?, ?, ?, ?, ?, ?)",

397+

);

398+

insert.run("test content", "1", "doc.md", "sessions", "mock-embed", 1, 1);

399+400+

await searchKeyword({

401+

db,

402+

ftsTable: "chunks_fts",

403+

providerModel: "mock-embed",

404+

query: "test",

405+

ftsTokenizer: "unicode61",

406+

limit: 10,

407+

snippetMaxChars: 200,

408+

sourceFilter: { sql: "", params: [] },

409+

buildFtsQuery: () => "BROKEN <<<",

410+

bm25RankToScore: bm25RankToScore,

411+

});

412+413+

expect(warnSpy).toHaveBeenCalledWith(

414+

expect.stringContaining("FTS5 MATCH failed, falling back to LIKE"),

415+

);

416+

} finally {

417+

warnSpy.mockRestore();

418+

db.close();

419+

}

420+

});

421+

});

422+182423

describe("searchVector sqlite-vec KNN", () => {

183424

const { DatabaseSync } = requireNodeSqlite();

184425