(error: unknown)
| 156 | * Checks if an error is a retryable PostgreSQL error. |
| 157 | */ |
| 158 | export function isRetryablePostgresError(error: unknown): boolean { |
| 159 | return getRetryableErrorDescription(error) !== null |
| 160 | } |
| 161 | |
| 162 | /** |
| 163 | * Executes a database transaction with SERIALIZABLE isolation level and automatic |
no test coverage detected