(name: string)
| 79 | const layerScope = yield* Effect.scope |
| 80 | const prefix = options?.prefix ?? "cluster" |
| 81 | const table = (name: string) => `${prefix}_${name}` |
| 82 | const pgLockNamespace = postgresLockNamespace(prefix) |
| 83 | // PostgreSQL exposes the signed int4 lock key through pg_locks as an unsigned oid. |
| 84 | const pgLockNamespaceOid = pgLockNamespace >>> 0 |