|
25 | 25 | import org.hibernate.Hibernate; |
26 | 26 | import org.hibernate.QueryException; |
27 | 27 | import org.hibernate.cfg.AvailableSettings; |
| 28 | +import org.hibernate.community.dialect.InformixDialect; |
28 | 29 | import org.hibernate.dialect.CockroachDialect; |
29 | 30 | import org.hibernate.dialect.DB2Dialect; |
30 | 31 | import org.hibernate.community.dialect.DerbyDialect; |
@@ -383,6 +384,7 @@ public Class getParameterType() { |
383 | 384 | @SkipForDialect(value = PostgreSQLDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null") |
384 | 385 | @SkipForDialect(value = PostgresPlusDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null") |
385 | 386 | @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") |
386 | 388 | public void testNativeQueryNullPositionalParameter() throws Exception { |
387 | 389 | EntityManager em = getOrCreateEntityManager(); |
388 | 390 | em.getTransaction().begin(); |
@@ -418,6 +420,7 @@ public void testNativeQueryNullPositionalParameter() throws Exception { |
418 | 420 | @SkipForDialect(value = PostgreSQLDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null") |
419 | 421 | @SkipForDialect(value = PostgresPlusDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null") |
420 | 422 | @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") |
421 | 424 | public void testNativeQueryNullPositionalParameterParameter() throws Exception { |
422 | 425 | EntityManager em = getOrCreateEntityManager(); |
423 | 426 | em.getTransaction().begin(); |
@@ -469,6 +472,7 @@ public Class getParameterType() { |
469 | 472 | @SkipForDialect(value = PostgreSQLDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null") |
470 | 473 | @SkipForDialect(value = PostgresPlusDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null") |
471 | 474 | @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") |
472 | 476 | public void testNativeQueryNullNamedParameter() throws Exception { |
473 | 477 | EntityManager em = getOrCreateEntityManager(); |
474 | 478 | em.getTransaction().begin(); |
@@ -504,6 +508,7 @@ public void testNativeQueryNullNamedParameter() throws Exception { |
504 | 508 | @SkipForDialect(value = PostgreSQLDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null") |
505 | 509 | @SkipForDialect(value = PostgresPlusDialect.class, jiraKey = "HHH-10312", comment = "Cannot determine the parameter types and bind type is unknown because the value is null") |
506 | 510 | @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") |
507 | 512 | public void testNativeQueryNullNamedParameterParameter() throws Exception { |
508 | 513 | EntityManager em = getOrCreateEntityManager(); |
509 | 514 | em.getTransaction().begin(); |
|
0 commit comments