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 12
12
import jakarta .persistence .criteria .Predicate ;
13
13
import jakarta .persistence .criteria .Root ;
14
14
15
+ import org .hibernate .community .dialect .InformixDialect ;
15
16
import org .hibernate .dialect .CockroachDialect ;
16
17
import org .hibernate .dialect .OracleDialect ;
17
18
import org .hibernate .orm .test .jpa .metamodel .AbstractMetamodelSpecificTest ;
@@ -241,6 +242,8 @@ public void testCharArray() {
241
242
@ JiraKey ( "HHH-10603" )
242
243
@ SkipForDialect (dialectClass = OracleDialect .class , majorVersion = 12 ,
243
244
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" )
244
247
public void testByteArray () {
245
248
EntityManager em = getOrCreateEntityManager ();
246
249
em .getTransaction ().begin ();
You can’t perform that action at this time.
0 commit comments