File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
hibernate-core/src/test/java/org/hibernate/orm/test/jpa/metadata Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 44 */
55package org .hibernate .orm .test .jpa .metadata ;
66
7+ import org .hibernate .dialect .SybaseASEDialect ;
78import org .hibernate .testing .orm .junit .EntityManagerFactoryScope ;
89import org .hibernate .testing .orm .junit .Jpa ;
10+ import org .hibernate .testing .orm .junit .SkipForDialect ;
911import org .junit .jupiter .api .Test ;
1012
1113import java .util .List ;
1416
1517@ Jpa (annotatedClasses = Record .class )
1618public class TypesafeNamedQueryTest {
19+ @ SkipForDialect (dialectClass = SybaseASEDialect .class ,
20+ reason = "'order by timestamp, id' not quite working" )
1721 @ Test void test (EntityManagerFactoryScope scope ) {
1822 scope .inTransaction ( entityManager -> {
1923 Record record1 = new Record ("Hello, World!" );
You can’t perform that action at this time.
0 commit comments