File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
hibernate-core/src/test/java/org/hibernate/orm/test Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 77import java .sql .Clob ;
88import java .util .List ;
99
10+ import org .hibernate .community .dialect .InformixDialect ;
1011import org .hibernate .query .Query ;
1112
1213import org .hibernate .testing .orm .junit .JiraKey ;
1314import org .hibernate .testing .orm .junit .DomainModel ;
1415import org .hibernate .testing .orm .junit .SessionFactory ;
1516import org .hibernate .testing .orm .junit .SessionFactoryScope ;
17+ import org .hibernate .testing .orm .junit .SkipForDialect ;
1618import org .junit .jupiter .api .AfterEach ;
1719import org .junit .jupiter .api .BeforeEach ;
1820import org .junit .jupiter .api .Test ;
3436 annotatedClasses = LobStringFunctionsTest .TestEntity .class
3537)
3638@ SessionFactory
39+ @ SkipForDialect (dialectClass = InformixDialect .class , reason = "Informix does not allow these functions for LOBs" )
3740public class LobStringFunctionsTest {
3841
3942 private static final int LONG_STRING_SIZE = 3999 ;
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ public void tearsDown() {
5656 }
5757
5858 @ Test
59+ @ RequiresDialectFeature ( feature = DialectFeatureChecks .SupportsTableCheck .class )
5960 public void testCheckConstraintsAtEntityLevelAreApplied () throws Exception {
6061 createSchema ( EntityLevelCheck .class );
6162 String fileContent = new String ( Files .readAllBytes ( output .toPath () ) ).toLowerCase ()
You can’t perform that action at this time.
0 commit comments