HHH-15592 Fix NPE for uses of JdbcExceptionHelper.extractSqlState
This commit is contained in:
parent
4b24bcf7af
commit
6b6cd51edf
|
@ -647,9 +647,13 @@ public class DerbyLegacyDialect extends Dialect {
|
|||
final String sqlState = JdbcExceptionHelper.extractSqlState( sqlException );
|
||||
// final int errorCode = JdbcExceptionHelper.extractErrorCode( sqlException );
|
||||
|
||||
if ( "40XL1".equals( sqlState ) || "40XL2".equals( sqlState ) ) {
|
||||
if ( sqlState != null ) {
|
||||
switch ( sqlState ) {
|
||||
case "40XL1":
|
||||
case "40XL2":
|
||||
throw new LockTimeoutException( message, sqlException, sql );
|
||||
}
|
||||
}
|
||||
return null;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -719,12 +719,14 @@ public class MySQLLegacyDialect extends Dialect {
|
|||
|
||||
private static final ViolatedConstraintNameExtractor EXTRACTOR =
|
||||
new TemplatedViolatedConstraintNameExtractor( sqle -> {
|
||||
switch ( Integer.parseInt( JdbcExceptionHelper.extractSqlState( sqle ) ) ) {
|
||||
final String sqlState = JdbcExceptionHelper.extractSqlState( sqle );
|
||||
if ( sqlState != null ) {
|
||||
switch ( Integer.parseInt( sqlState ) ) {
|
||||
case 23000:
|
||||
return extractUsingTemplate( " for key '", "'", sqle.getMessage() );
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
} );
|
||||
|
||||
@Override
|
||||
|
|
|
@ -872,44 +872,54 @@ public class PostgreSQLLegacyDialect extends Dialect {
|
|||
*/
|
||||
private static final ViolatedConstraintNameExtractor EXTRACTOR =
|
||||
new TemplatedViolatedConstraintNameExtractor( sqle -> {
|
||||
switch ( Integer.parseInt( JdbcExceptionHelper.extractSqlState( sqle ) ) ) {
|
||||
final String sqlState = JdbcExceptionHelper.extractSqlState( sqle );
|
||||
if ( sqlState != null ) {
|
||||
switch ( Integer.parseInt( sqlState ) ) {
|
||||
// CHECK VIOLATION
|
||||
case 23514:
|
||||
return extractUsingTemplate( "violates check constraint \"","\"", sqle.getMessage() );
|
||||
return extractUsingTemplate( "violates check constraint \"", "\"", sqle.getMessage() );
|
||||
// UNIQUE VIOLATION
|
||||
case 23505:
|
||||
return extractUsingTemplate( "violates unique constraint \"","\"", sqle.getMessage() );
|
||||
return extractUsingTemplate( "violates unique constraint \"", "\"", sqle.getMessage() );
|
||||
// FOREIGN KEY VIOLATION
|
||||
case 23503:
|
||||
return extractUsingTemplate( "violates foreign key constraint \"","\"", sqle.getMessage() );
|
||||
return extractUsingTemplate(
|
||||
"violates foreign key constraint \"",
|
||||
"\"",
|
||||
sqle.getMessage()
|
||||
);
|
||||
// NOT NULL VIOLATION
|
||||
case 23502:
|
||||
return extractUsingTemplate( "null value in column \"","\" violates not-null constraint", sqle.getMessage() );
|
||||
return extractUsingTemplate(
|
||||
"null value in column \"",
|
||||
"\" violates not-null constraint",
|
||||
sqle.getMessage()
|
||||
);
|
||||
// TODO: RESTRICT VIOLATION
|
||||
case 23001:
|
||||
return null;
|
||||
// ALL OTHER
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
} );
|
||||
|
||||
@Override
|
||||
public SQLExceptionConversionDelegate buildSQLExceptionConversionDelegate() {
|
||||
return (sqlException, message, sql) -> {
|
||||
switch ( JdbcExceptionHelper.extractSqlState( sqlException ) ) {
|
||||
final String sqlState = JdbcExceptionHelper.extractSqlState( sqlException );
|
||||
if ( sqlState != null ) {
|
||||
switch ( sqlState ) {
|
||||
case "40P01":
|
||||
// DEADLOCK DETECTED
|
||||
return new LockAcquisitionException(message, sqlException, sql);
|
||||
return new LockAcquisitionException( message, sqlException, sql );
|
||||
case "55P03":
|
||||
// LOCK NOT AVAILABLE
|
||||
return new PessimisticLockException(message, sqlException, sql);
|
||||
return new PessimisticLockException( message, sqlException, sql );
|
||||
case "57014":
|
||||
return new QueryTimeoutException( message, sqlException, sql );
|
||||
default:
|
||||
// returning null allows other delegates to operate
|
||||
return null;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -642,16 +642,18 @@ public class SybaseASELegacyDialect extends SybaseLegacyDialect {
|
|||
*/
|
||||
private static final ViolatedConstraintNameExtractor EXTRACTOR =
|
||||
new TemplatedViolatedConstraintNameExtractor( sqle -> {
|
||||
final String sqlState = JdbcExceptionHelper.extractSqlState( sqle );
|
||||
final int errorCode = JdbcExceptionHelper.extractErrorCode( sqle );
|
||||
switch ( JdbcExceptionHelper.extractSqlState( sqle ) ) {
|
||||
if ( sqlState != null ) {
|
||||
switch ( sqlState ) {
|
||||
// UNIQUE VIOLATION
|
||||
case "S1000":
|
||||
if (2601 == errorCode) {
|
||||
if ( 2601 == errorCode ) {
|
||||
return extractUsingTemplate( "with unique index '", "'", sqle.getMessage() );
|
||||
}
|
||||
break;
|
||||
case "23000":
|
||||
if (546 == errorCode) {
|
||||
if ( 546 == errorCode ) {
|
||||
// Foreign key violation
|
||||
return extractUsingTemplate( "constraint name = '", "'", sqle.getMessage() );
|
||||
}
|
||||
|
@ -665,9 +667,7 @@ public class SybaseASELegacyDialect extends SybaseLegacyDialect {
|
|||
// // TODO: RESTRICT VIOLATION
|
||||
// case 23001:
|
||||
// return null;
|
||||
// ALL OTHER
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
} );
|
||||
|
@ -681,6 +681,7 @@ public class SybaseASELegacyDialect extends SybaseLegacyDialect {
|
|||
return (sqlException, message, sql) -> {
|
||||
final String sqlState = JdbcExceptionHelper.extractSqlState( sqlException );
|
||||
final int errorCode = JdbcExceptionHelper.extractErrorCode( sqlException );
|
||||
if ( sqlState != null ) {
|
||||
switch ( sqlState ) {
|
||||
case "JZ0TO":
|
||||
case "JZ006":
|
||||
|
@ -691,25 +692,29 @@ public class SybaseASELegacyDialect extends SybaseLegacyDialect {
|
|||
// Attempt to insert NULL value into column; column does not allow nulls.
|
||||
case 2601:
|
||||
// Unique constraint violation
|
||||
final String constraintName = getViolatedConstraintNameExtractor().extractConstraintName( sqlException );
|
||||
final String constraintName = getViolatedConstraintNameExtractor().extractConstraintName(
|
||||
sqlException );
|
||||
return new ConstraintViolationException( message, sqlException, sql, constraintName );
|
||||
}
|
||||
break;
|
||||
case "ZZZZZ":
|
||||
if (515 == errorCode) {
|
||||
if ( 515 == errorCode ) {
|
||||
// Attempt to insert NULL value into column; column does not allow nulls.
|
||||
final String constraintName = getViolatedConstraintNameExtractor().extractConstraintName( sqlException );
|
||||
final String constraintName = getViolatedConstraintNameExtractor().extractConstraintName(
|
||||
sqlException );
|
||||
return new ConstraintViolationException( message, sqlException, sql, constraintName );
|
||||
}
|
||||
break;
|
||||
case "23000":
|
||||
if (546 == errorCode) {
|
||||
if ( 546 == errorCode ) {
|
||||
// Foreign key violation
|
||||
final String constraintName = getViolatedConstraintNameExtractor().extractConstraintName( sqlException );
|
||||
final String constraintName = getViolatedConstraintNameExtractor().extractConstraintName(
|
||||
sqlException );
|
||||
return new ConstraintViolationException( message, sqlException, sql, constraintName );
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -602,9 +602,13 @@ public class DerbyDialect extends Dialect {
|
|||
final String sqlState = JdbcExceptionHelper.extractSqlState( sqlException );
|
||||
// final int errorCode = JdbcExceptionHelper.extractErrorCode( sqlException );
|
||||
|
||||
if ( "40XL1".equals( sqlState ) || "40XL2".equals( sqlState ) ) {
|
||||
if ( sqlState != null ) {
|
||||
switch ( sqlState ) {
|
||||
case "40XL1":
|
||||
case "40XL2":
|
||||
throw new LockTimeoutException( message, sqlException, sql );
|
||||
}
|
||||
}
|
||||
return null;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -728,12 +728,14 @@ public class MySQLDialect extends Dialect {
|
|||
|
||||
private static final ViolatedConstraintNameExtractor EXTRACTOR =
|
||||
new TemplatedViolatedConstraintNameExtractor( sqle -> {
|
||||
switch ( Integer.parseInt( JdbcExceptionHelper.extractSqlState( sqle ) ) ) {
|
||||
final String sqlState = JdbcExceptionHelper.extractSqlState( sqle );
|
||||
if ( sqlState != null ) {
|
||||
switch ( Integer.parseInt( sqlState ) ) {
|
||||
case 23000:
|
||||
return extractUsingTemplate( " for key '", "'", sqle.getMessage() );
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
} );
|
||||
|
||||
@Override
|
||||
|
|
|
@ -847,44 +847,50 @@ public class PostgreSQLDialect extends Dialect {
|
|||
*/
|
||||
private static final ViolatedConstraintNameExtractor EXTRACTOR =
|
||||
new TemplatedViolatedConstraintNameExtractor( sqle -> {
|
||||
switch ( Integer.parseInt( JdbcExceptionHelper.extractSqlState( sqle ) ) ) {
|
||||
final String sqlState = JdbcExceptionHelper.extractSqlState( sqle );
|
||||
if ( sqlState != null ) {
|
||||
switch ( Integer.parseInt( sqlState ) ) {
|
||||
// CHECK VIOLATION
|
||||
case 23514:
|
||||
return extractUsingTemplate( "violates check constraint \"","\"", sqle.getMessage() );
|
||||
return extractUsingTemplate( "violates check constraint \"", "\"", sqle.getMessage() );
|
||||
// UNIQUE VIOLATION
|
||||
case 23505:
|
||||
return extractUsingTemplate( "violates unique constraint \"","\"", sqle.getMessage() );
|
||||
return extractUsingTemplate( "violates unique constraint \"", "\"", sqle.getMessage() );
|
||||
// FOREIGN KEY VIOLATION
|
||||
case 23503:
|
||||
return extractUsingTemplate( "violates foreign key constraint \"","\"", sqle.getMessage() );
|
||||
return extractUsingTemplate( "violates foreign key constraint \"", "\"", sqle.getMessage() );
|
||||
// NOT NULL VIOLATION
|
||||
case 23502:
|
||||
return extractUsingTemplate( "null value in column \"","\" violates not-null constraint", sqle.getMessage() );
|
||||
return extractUsingTemplate(
|
||||
"null value in column \"",
|
||||
"\" violates not-null constraint",
|
||||
sqle.getMessage()
|
||||
);
|
||||
// TODO: RESTRICT VIOLATION
|
||||
case 23001:
|
||||
return null;
|
||||
// ALL OTHER
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
} );
|
||||
|
||||
@Override
|
||||
public SQLExceptionConversionDelegate buildSQLExceptionConversionDelegate() {
|
||||
return (sqlException, message, sql) -> {
|
||||
switch ( JdbcExceptionHelper.extractSqlState( sqlException ) ) {
|
||||
final String sqlState = JdbcExceptionHelper.extractSqlState( sqlException );
|
||||
if ( sqlState != null ) {
|
||||
switch ( sqlState ) {
|
||||
case "40P01":
|
||||
// DEADLOCK DETECTED
|
||||
return new LockAcquisitionException(message, sqlException, sql);
|
||||
return new LockAcquisitionException( message, sqlException, sql );
|
||||
case "55P03":
|
||||
// LOCK NOT AVAILABLE
|
||||
return new PessimisticLockException(message, sqlException, sql);
|
||||
return new PessimisticLockException( message, sqlException, sql );
|
||||
case "57014":
|
||||
return new QueryTimeoutException( message, sqlException, sql );
|
||||
default:
|
||||
// returning null allows other delegates to operate
|
||||
return null;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -625,32 +625,33 @@ public class SybaseASEDialect extends SybaseDialect {
|
|||
*/
|
||||
private static final ViolatedConstraintNameExtractor EXTRACTOR =
|
||||
new TemplatedViolatedConstraintNameExtractor( sqle -> {
|
||||
final String sqlState = JdbcExceptionHelper.extractSqlState( sqle );
|
||||
final int errorCode = JdbcExceptionHelper.extractErrorCode( sqle );
|
||||
switch ( JdbcExceptionHelper.extractSqlState( sqle ) ) {
|
||||
if ( sqlState != null ) {
|
||||
switch ( sqlState ) {
|
||||
// UNIQUE VIOLATION
|
||||
case "S1000":
|
||||
if (2601 == errorCode) {
|
||||
if ( 2601 == errorCode ) {
|
||||
return extractUsingTemplate( "with unique index '", "'", sqle.getMessage() );
|
||||
}
|
||||
break;
|
||||
case "23000":
|
||||
if (546 == errorCode) {
|
||||
if ( 546 == errorCode ) {
|
||||
// Foreign key violation
|
||||
return extractUsingTemplate( "constraint name = '", "'", sqle.getMessage() );
|
||||
}
|
||||
break;
|
||||
// // FOREIGN KEY VIOLATION
|
||||
// case 23503:
|
||||
// return extractUsingTemplate( "violates foreign key constraint \"","\"", sqle.getMessage() );
|
||||
// // NOT NULL VIOLATION
|
||||
// case 23502:
|
||||
// return extractUsingTemplate( "null value in column \"","\" violates not-null constraint", sqle.getMessage() );
|
||||
// // TODO: RESTRICT VIOLATION
|
||||
// case 23001:
|
||||
// return null;
|
||||
// // FOREIGN KEY VIOLATION
|
||||
// case 23503:
|
||||
// return extractUsingTemplate( "violates foreign key constraint \"","\"", sqle.getMessage() );
|
||||
// // NOT NULL VIOLATION
|
||||
// case 23502:
|
||||
// return extractUsingTemplate( "null value in column \"","\" violates not-null constraint", sqle.getMessage() );
|
||||
// // TODO: RESTRICT VIOLATION
|
||||
// case 23001:
|
||||
// return null;
|
||||
// ALL OTHER
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
} );
|
||||
|
@ -660,6 +661,7 @@ public class SybaseASEDialect extends SybaseDialect {
|
|||
return (sqlException, message, sql) -> {
|
||||
final String sqlState = JdbcExceptionHelper.extractSqlState( sqlException );
|
||||
final int errorCode = JdbcExceptionHelper.extractErrorCode( sqlException );
|
||||
if ( sqlState != null ) {
|
||||
switch ( sqlState ) {
|
||||
case "JZ0TO":
|
||||
case "JZ006":
|
||||
|
@ -670,25 +672,29 @@ public class SybaseASEDialect extends SybaseDialect {
|
|||
// Attempt to insert NULL value into column; column does not allow nulls.
|
||||
case 2601:
|
||||
// Unique constraint violation
|
||||
final String constraintName = getViolatedConstraintNameExtractor().extractConstraintName( sqlException );
|
||||
final String constraintName = getViolatedConstraintNameExtractor().extractConstraintName(
|
||||
sqlException );
|
||||
return new ConstraintViolationException( message, sqlException, sql, constraintName );
|
||||
}
|
||||
break;
|
||||
case "ZZZZZ":
|
||||
if (515 == errorCode) {
|
||||
if ( 515 == errorCode ) {
|
||||
// Attempt to insert NULL value into column; column does not allow nulls.
|
||||
final String constraintName = getViolatedConstraintNameExtractor().extractConstraintName( sqlException );
|
||||
final String constraintName = getViolatedConstraintNameExtractor().extractConstraintName(
|
||||
sqlException );
|
||||
return new ConstraintViolationException( message, sqlException, sql, constraintName );
|
||||
}
|
||||
break;
|
||||
case "23000":
|
||||
if (546 == errorCode) {
|
||||
if ( 546 == errorCode ) {
|
||||
// Foreign key violation
|
||||
final String constraintName = getViolatedConstraintNameExtractor().extractConstraintName( sqlException );
|
||||
final String constraintName = getViolatedConstraintNameExtractor().extractConstraintName(
|
||||
sqlException );
|
||||
return new ConstraintViolationException( message, sqlException, sql, constraintName );
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -0,0 +1,34 @@
|
|||
/*
|
||||
* Hibernate, Relational Persistence for Idiomatic Java
|
||||
*
|
||||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
||||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||
*/
|
||||
package org.hibernate.orm.test.dialect;
|
||||
|
||||
import java.sql.SQLException;
|
||||
|
||||
import org.hibernate.dialect.Dialect;
|
||||
import org.hibernate.exception.spi.SQLExceptionConversionDelegate;
|
||||
|
||||
import org.hibernate.testing.TestForIssue;
|
||||
import org.hibernate.testing.orm.junit.DialectContext;
|
||||
import org.junit.jupiter.api.Assumptions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class DialectSQLExceptionConversionTest {
|
||||
|
||||
private final Dialect dialect = DialectContext.getDialect();
|
||||
|
||||
@Test
|
||||
@TestForIssue(jiraKey = "HHH-15592")
|
||||
public void testExceptionConversionDoesntNPE() {
|
||||
final SQLExceptionConversionDelegate conversionDelegate = dialect.buildSQLExceptionConversionDelegate();
|
||||
Assumptions.assumeTrue( conversionDelegate != null );
|
||||
conversionDelegate.convert(
|
||||
new SQLException(),
|
||||
"test",
|
||||
"test"
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue