We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94f7e95 commit 219d622Copy full SHA for 219d622
hibernate-core/src/test/java/org/hibernate/orm/test/constraint/ConstraintInterpretationTest2.java
@@ -55,7 +55,7 @@ public class ConstraintInterpretationTest2 {
55
}
56
catch (ConstraintViolationException cve) {
57
assertEquals( ConstraintViolationException.ConstraintKind.NOT_NULL, cve.getKind() );
58
- if ( !(scope.getDialect() instanceof DB2Dialect) ) {
+ if ( !(scope.getDialect() instanceof DB2Dialect) && !(scope.getDialect() instanceof InformixDialect) ) {
59
assertTrue( cve.getConstraintName().toLowerCase().endsWith( "id" ) );
60
61
0 commit comments