HHH-17779 support for key-based pagination
fixe compilation error in tests
This commit is contained in:
parent
842a6d02f6
commit
483279c748
|
@ -25,6 +25,8 @@ import org.hibernate.ScrollMode;
|
|||
import org.hibernate.ScrollableResults;
|
||||
import org.hibernate.graph.GraphSemantic;
|
||||
import org.hibernate.query.BindableType;
|
||||
import org.hibernate.query.KeyedPage;
|
||||
import org.hibernate.query.KeyedResultList;
|
||||
import org.hibernate.query.Order;
|
||||
import org.hibernate.query.Page;
|
||||
import org.hibernate.query.ParameterMetadata;
|
||||
|
@ -99,6 +101,11 @@ public abstract class DelegatingSqmSelectionQueryImplementor<R> implements SqmSe
|
|||
return getDelegate().getResultCount();
|
||||
}
|
||||
|
||||
@Override
|
||||
public KeyedResultList<R> getKeyedResultList(KeyedPage<R> page) {
|
||||
return getDelegate().getKeyedResultList( page );
|
||||
}
|
||||
|
||||
@Override
|
||||
public ScrollableResults<R> scroll() {
|
||||
return getDelegate().scroll();
|
||||
|
|
Loading…
Reference in New Issue