Skip to content

Commit a406596

Browse files
committed
disable test on Sybase
1 parent fe8d18a commit a406596

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

hibernate-core/src/test/java/org/hibernate/orm/test/jpa/metadata/TypesafeNamedQueryTest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44
*/
55
package org.hibernate.orm.test.jpa.metadata;
66

7+
import org.hibernate.dialect.SybaseASEDialect;
78
import org.hibernate.testing.orm.junit.EntityManagerFactoryScope;
89
import org.hibernate.testing.orm.junit.Jpa;
10+
import org.hibernate.testing.orm.junit.SkipForDialect;
911
import org.junit.jupiter.api.Test;
1012

1113
import java.util.List;
@@ -14,6 +16,8 @@
1416

1517
@Jpa(annotatedClasses = Record.class)
1618
public 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!");

0 commit comments

Comments
 (0)