(operation: string)
| 40 | WRITE_OPERATIONS.includes(operation as Operation); |
| 41 | |
| 42 | const isReadOperation = (operation: string) => |
| 43 | READ_OPERATIONS.includes(operation as Operation); |
| 44 | |
| 45 | async function getCurrentWalLsn( |
| 46 | prismaClient: BarePrismaClient, |
no outgoing calls
no test coverage detected