(adapter: SessionRuntimeAdapter, sessionId: string)
| 33 | } |
| 34 | |
| 35 | export function getFtsStatus(adapter: SessionRuntimeAdapter, sessionId: string): boolean { |
| 36 | const db = adapter.ensureReadonly(sessionId) |
| 37 | return hasFtsTable(db) |
| 38 | } |
| 39 | |
| 40 | export function searchFts( |
| 41 | adapter: SessionRuntimeAdapter, |
nothing calls this directly
no test coverage detected