Skip to content

Commit 3d14126

Browse files
committed
skip test on Informix
1 parent ad91b04 commit 3d14126

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

hibernate-core/src/test/java/org/hibernate/orm/test/jpa/criteria/basic/PredicateTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import jakarta.persistence.criteria.Predicate;
1313
import jakarta.persistence.criteria.Root;
1414

15+
import org.hibernate.community.dialect.InformixDialect;
1516
import org.hibernate.dialect.CockroachDialect;
1617
import org.hibernate.dialect.OracleDialect;
1718
import org.hibernate.orm.test.jpa.metamodel.AbstractMetamodelSpecificTest;
@@ -241,6 +242,8 @@ public void testCharArray() {
241242
@JiraKey( "HHH-10603" )
242243
@SkipForDialect(dialectClass = OracleDialect.class, majorVersion = 12,
243244
reason = "Oracle12cDialect uses blob to store byte arrays and it's not possible to compare blobs with simple equality operators.")
245+
@SkipForDialect(dialectClass = InformixDialect.class,
246+
reason = "Blobs are not allowed in this expression")
244247
public void testByteArray() {
245248
EntityManager em = getOrCreateEntityManager();
246249
em.getTransaction().begin();

0 commit comments

Comments
 (0)