Skip to content

Commit ae021cf

Browse files
committed
test showing maxindex() / maxelement() broken
1 parent 9a2c878 commit ae021cf

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

hibernate-core/src/test/java/org/hibernate/orm/test/query/hql/FunctionTests.java

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,8 @@
99
import org.hibernate.QueryException;
1010
import org.hibernate.dialect.DerbyDialect;
1111

12-
import org.hibernate.dialect.H2Dialect;
13-
import org.hibernate.dialect.HSQLDialect;
1412
import org.hibernate.dialect.MariaDBDialect;
1513
import org.hibernate.dialect.MySQLDialect;
16-
import org.hibernate.dialect.SybaseDialect;
1714
import org.hibernate.dialect.TiDBDialect;
1815
import org.hibernate.testing.orm.domain.StandardDomainModel;
1916
import org.hibernate.testing.orm.domain.gambit.EntityOfBasics;
@@ -94,14 +91,6 @@ public void testIdVersionFunctions(SessionFactoryScope scope) {
9491
}
9592

9693
@Test
97-
@RequiresDialect(H2Dialect.class)
98-
@RequiresDialect(HSQLDialect.class)
99-
@RequiresDialect(DerbyDialect.class)
100-
@RequiresDialect(MySQLDialect.class)
101-
@RequiresDialect(SybaseDialect.class)
102-
@RequiresDialect(MariaDBDialect.class)
103-
@RequiresDialect(TiDBDialect.class)
104-
// it's failing on the other dialects due to a bug in query translator
10594
public void testMaxMinSumIndexElement(SessionFactoryScope scope) {
10695
scope.inTransaction(
10796
session -> {
@@ -133,14 +122,6 @@ public void testMaxMinSumIndexElement(SessionFactoryScope scope) {
133122
}
134123

135124
@Test
136-
@RequiresDialect(H2Dialect.class)
137-
@RequiresDialect(HSQLDialect.class)
138-
@RequiresDialect(DerbyDialect.class)
139-
@RequiresDialect(MySQLDialect.class)
140-
@RequiresDialect(SybaseDialect.class)
141-
@RequiresDialect(MariaDBDialect.class)
142-
@RequiresDialect(TiDBDialect.class)
143-
// it's failing on the other dialects due to a bug in query translator
144125
public void testMaxindexMaxelement(SessionFactoryScope scope) {
145126
scope.inTransaction(
146127
session -> {

0 commit comments

Comments
 (0)