Skip to content

Commit 61e1623

Browse files
committed
skip test on Informix
1 parent 219d622 commit 61e1623

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

hibernate-core/src/test/java/org/hibernate/orm/test/hql/QueryComparingAssociationToNullTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
import org.hibernate.community.dialect.DerbyDialect;
1010

11+
import org.hibernate.community.dialect.InformixDialect;
1112
import org.hibernate.testing.orm.junit.DomainModel;
1213
import org.hibernate.testing.orm.junit.JiraKey;
1314
import org.hibernate.testing.orm.junit.SessionFactory;
@@ -31,7 +32,8 @@
3132
)
3233
@SessionFactory
3334
@JiraKey("HHH-16974")
34-
@SkipForDialect( dialectClass = DerbyDialect.class, reason = "it does not like `= null`")
35+
@SkipForDialect( dialectClass = DerbyDialect.class, reason = "it does not like '= null'")
36+
@SkipForDialect( dialectClass = InformixDialect.class, reason = "it does not like '= null'")
3537
public class QueryComparingAssociationToNullTest {
3638

3739
@Test

0 commit comments

Comments
 (0)