File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
hibernate-core/src/test/java/org/hibernate/orm/test/jpa/criteria/basic Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 1212import jakarta .persistence .criteria .Predicate ;
1313import jakarta .persistence .criteria .Root ;
1414
15+ import org .hibernate .community .dialect .InformixDialect ;
1516import org .hibernate .dialect .CockroachDialect ;
1617import org .hibernate .dialect .OracleDialect ;
1718import 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 ();
You can’t perform that action at this time.
0 commit comments