(dbPath: string)
| 38 | }); |
| 39 | |
| 40 | const openDb = (dbPath: string) => |
| 41 | createSqliteFumaDb({ |
| 42 | tables: collectTables(), |
| 43 | namespace: "executor_local", |
| 44 | path: dbPath, |
| 45 | }); |
| 46 | |
| 47 | /** Write the row a pre-`bigint` build left behind: `expires_at` as a bare |
| 48 | * integer literal, which SQLite keeps in the INTEGER storage class. */ |
no test coverage detected