(db: SqliteTestFumaDb, tenant: string)
| 29 | // `last_seen_at` is a bigint column stored as a SQLite blob, so a raw SQL read |
| 30 | // would hand back an unusable buffer — the ORM owns the round-trip. |
| 31 | const scopedTo = (db: SqliteTestFumaDb, tenant: string) => |
| 32 | withQueryContext(db.db, { |
| 33 | tenant, |
| 34 | subject: null, |
| 35 | } satisfies ExecutorOwnerPolicyContext); |
| 36 | |
| 37 | const storedSubjects = ( |
| 38 | db: SqliteTestFumaDb, |
no test coverage detected