#1190 - MySql throwing DataIntegrityException when it should throw the more specific DuplicateKeyException

Ah, remove the 23000 SQLState to just use the error codes for MySql.
This commit is contained in:
rob bygrave
2017-11-02 01:16:52 +13:00
parent 10eb2bc21f
commit da818f17c2
@@ -42,7 +42,7 @@ public class MySqlPlatform extends DatabasePlatform {
this.exceptionTranslator =
new SqlErrorCodes()
.addAcquireLock("1205")
.addDuplicateKey("1062", "1169", "23000")
.addDuplicateKey("1062", "1169")
.addDataIntegrity("630", "839", "840", "893", "1215", "1216", "1217", "1364", "1451", "1452", "1557")
.build();