File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/basic Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 10
10
import jakarta .persistence .Id ;
11
11
12
12
import org .hibernate .annotations .Nationalized ;
13
+ import org .hibernate .dialect .SybaseASEDialect ;
13
14
import org .hibernate .orm .test .jpa .BaseEntityManagerFunctionalTestCase ;
14
15
16
+ import org .hibernate .testing .orm .junit .SkipForDialect ;
15
17
import org .junit .Test ;
16
18
17
19
import static org .hibernate .testing .transaction .TransactionUtil .doInJPA ;
20
22
/**
21
23
* @author Vlad Mihalcea
22
24
*/
25
+ @ SkipForDialect (dialectClass = SybaseASEDialect .class ,
26
+ reason = "Error converting characters into server's character set" )
23
27
public class NationalizedTest extends BaseEntityManagerFunctionalTestCase {
24
28
25
29
@ Override
Original file line number Diff line number Diff line change 14
14
import org .hibernate .annotations .Nationalized ;
15
15
import org .hibernate .dialect .Dialect ;
16
16
import org .hibernate .dialect .NationalizationSupport ;
17
+ import org .hibernate .dialect .SybaseASEDialect ;
17
18
import org .hibernate .metamodel .mapping .JdbcMapping ;
18
19
import org .hibernate .metamodel .mapping .internal .BasicAttributeMapping ;
19
20
import org .hibernate .metamodel .spi .MappingMetamodelImplementor ;
20
21
import org .hibernate .persister .entity .EntityPersister ;
22
+ import org .hibernate .testing .orm .junit .SkipForDialect ;
21
23
import org .hibernate .type .descriptor .jdbc .spi .JdbcTypeRegistry ;
22
24
23
25
import org .hibernate .testing .orm .junit .DomainModel ;
37
39
*/
38
40
@ DomainModel (annotatedClasses = StringNationalizedMappingTests .EntityOfStrings .class )
39
41
@ SessionFactory
42
+ @ SkipForDialect (dialectClass = SybaseASEDialect .class ,
43
+ reason = "Error converting characters into server's character set" )
40
44
public class StringNationalizedMappingTests {
41
45
42
46
@ Test
You can’t perform that action at this time.
0 commit comments