(sessionId: string)
| 71 | function buildStreamImportDeps(requestId: string): StreamImportDeps { |
| 72 | return { |
| 73 | openDatabase(sessionId: string) { |
| 74 | const db = createDatabaseWithoutIndexes(sessionId) |
| 75 | return new BetterSqliteAdapter(db) |
| 76 | }, |
| 77 | deleteDatabase(sessionId: string) { |
| 78 | const dbPath = getDbPath(sessionId) |
| 79 | for (const suffix of ['', '-wal', '-shm']) { |
nothing calls this directly
no test coverage detected