Skip to content

Commit 52456a2

Browse files
committed
Added "already exists" to YSQL known error messages
1 parent a08e89e commit 52456a2

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/sqlancer/yugabyte/ysql/YSQLProvider.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@ private boolean isRetryableDatabaseCreationError(Exception e) {
259259
|| msg.contains("is being accessed by other users")
260260
|| msg.contains("connection has been closed")
261261
|| msg.contains("does not exist")
262+
|| msg.contains("already exists")
262263
|| msg.contains("Timed out waiting")
263264
|| msg.contains("Restarting a DDL transaction not supported");
264265
}

0 commit comments

Comments
 (0)