(shardIds: ReadonlyArray<string>)
| 434 | ).join(", ") |
| 435 | |
| 436 | const mysqlLocks = (shardIds: ReadonlyArray<string>) => |
| 437 | shardIds.map((shardId) => `GET_LOCK('${lockNames.get(shardId)!}', 0) AS "${shardId}"`).join(", ") |
| 438 | |
| 439 | const allMySqlTakenLocks = Array.from( |
| 440 | lockNames.entries(), |
no test coverage detected