mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-18 00:55:16 +00:00
HHH-14596 WhereAnnotatedOneToManySizeTest fails on HANA database
This commit is contained in:
parent
40851fc50d
commit
b30a68f5be
@ -10,6 +10,7 @@
|
|||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.hibernate.dialect.AbstractHANADialect;
|
||||||
import org.hibernate.dialect.DB2Dialect;
|
import org.hibernate.dialect.DB2Dialect;
|
||||||
import org.hibernate.query.spi.QueryImplementor;
|
import org.hibernate.query.spi.QueryImplementor;
|
||||||
|
|
||||||
@ -89,6 +90,7 @@ public void after() {
|
|||||||
|
|
||||||
@Test
|
@Test
|
||||||
@SkipForDialect(value = DB2Dialect.class, comment = "DB2 does not support correlated subqueries in the ORDER BY clause")
|
@SkipForDialect(value = DB2Dialect.class, comment = "DB2 does not support correlated subqueries in the ORDER BY clause")
|
||||||
|
@SkipForDialect(value = AbstractHANADialect.class, comment = "HANA db does not support correlated subqueries in the ORDER BY clause")
|
||||||
public void orderBy_sizeOf() {
|
public void orderBy_sizeOf() {
|
||||||
inSession( session -> {
|
inSession( session -> {
|
||||||
QueryImplementor<Object[]> query = session.createQuery(
|
QueryImplementor<Object[]> query = session.createQuery(
|
||||||
@ -101,6 +103,7 @@ public void orderBy_sizeOf() {
|
|||||||
|
|
||||||
@Test
|
@Test
|
||||||
@SkipForDialect(value = DB2Dialect.class, comment = "DB2 does not support correlated subqueries in the ORDER BY clause")
|
@SkipForDialect(value = DB2Dialect.class, comment = "DB2 does not support correlated subqueries in the ORDER BY clause")
|
||||||
|
@SkipForDialect(value = AbstractHANADialect.class, comment = "HANA db does not support correlated subqueries in the ORDER BY clause")
|
||||||
public void orderBy_dotSize() {
|
public void orderBy_dotSize() {
|
||||||
inSession( session -> {
|
inSession( session -> {
|
||||||
QueryImplementor<Object[]> query = session.createQuery(
|
QueryImplementor<Object[]> query = session.createQuery(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user