File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
hibernate-core/src/test/java/x Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 44 */
55package x ;
66
7+ import org .hibernate .dialect .OracleDialect ;
8+ import org .hibernate .dialect .SQLServerDialect ;
9+ import org .hibernate .dialect .SybaseASEDialect ;
710import org .hibernate .testing .orm .junit .EntityManagerFactoryScope ;
811import org .hibernate .testing .orm .junit .Jpa ;
12+ import org .hibernate .testing .orm .junit .SkipForDialect ;
913import org .junit .jupiter .api .Test ;
1014
1115import static org .junit .jupiter .api .Assertions .assertTrue ;
1216
1317@ Jpa
1418class RegexTest {
1519 @ Test
20+ @ SkipForDialect (dialectClass = OracleDialect .class , majorVersion = 19 )
21+ @ SkipForDialect (dialectClass = OracleDialect .class , majorVersion = 21 )
22+ @ SkipForDialect (dialectClass = SybaseASEDialect .class )
23+ @ SkipForDialect (dialectClass = SQLServerDialect .class )
1624 void test (EntityManagerFactoryScope scope ) {
1725 scope .inEntityManager ( em -> {
1826 assertTrue ( em .createQuery ( "select regexp_like('abcdef', 'ab.*')" , Boolean .class ).getSingleResult () );
You can’t perform that action at this time.
0 commit comments