Skip to content

Commit d064acd

Browse files
committed
skip tests on Informix
1 parent d0095a8 commit d064acd

File tree

1 file changed

+5
-0
lines changed
  • hibernate-core/src/test/java/org/hibernate/orm/test/jpa/query

1 file changed

+5
-0
lines changed

hibernate-core/src/test/java/org/hibernate/orm/test/jpa/query/QueryTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import org.hibernate.Hibernate;
2626
import org.hibernate.QueryException;
2727
import org.hibernate.cfg.AvailableSettings;
28+
import org.hibernate.community.dialect.InformixDialect;
2829
import org.hibernate.dialect.CockroachDialect;
2930
import org.hibernate.dialect.DB2Dialect;
3031
import org.hibernate.community.dialect.DerbyDialect;
@@ -383,6 +384,7 @@ public Class getParameterType() {
383384
@SkipForDialect(value = PostgreSQLDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null")
384385
@SkipForDialect(value = PostgresPlusDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null")
385386
@SkipForDialect(value = CockroachDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null")
387+
@SkipForDialect(value = InformixDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null")
386388
public void testNativeQueryNullPositionalParameter() throws Exception {
387389
EntityManager em = getOrCreateEntityManager();
388390
em.getTransaction().begin();
@@ -418,6 +420,7 @@ public void testNativeQueryNullPositionalParameter() throws Exception {
418420
@SkipForDialect(value = PostgreSQLDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null")
419421
@SkipForDialect(value = PostgresPlusDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null")
420422
@SkipForDialect(value = CockroachDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null")
423+
@SkipForDialect(value = InformixDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null")
421424
public void testNativeQueryNullPositionalParameterParameter() throws Exception {
422425
EntityManager em = getOrCreateEntityManager();
423426
em.getTransaction().begin();
@@ -469,6 +472,7 @@ public Class getParameterType() {
469472
@SkipForDialect(value = PostgreSQLDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null")
470473
@SkipForDialect(value = PostgresPlusDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null")
471474
@SkipForDialect(value = CockroachDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null")
475+
@SkipForDialect(value = InformixDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null")
472476
public void testNativeQueryNullNamedParameter() throws Exception {
473477
EntityManager em = getOrCreateEntityManager();
474478
em.getTransaction().begin();
@@ -504,6 +508,7 @@ public void testNativeQueryNullNamedParameter() throws Exception {
504508
@SkipForDialect(value = PostgreSQLDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null")
505509
@SkipForDialect(value = PostgresPlusDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null")
506510
@SkipForDialect(value = CockroachDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null")
511+
@SkipForDialect(value = InformixDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null")
507512
public void testNativeQueryNullNamedParameterParameter() throws Exception {
508513
EntityManager em = getOrCreateEntityManager();
509514
em.getTransaction().begin();

0 commit comments

Comments
 (0)