HHH-17779 support for key-based pagination

fixe compilation error in tests
This commit is contained in:
Gavin King 2024-02-26 21:33:59 +01:00
parent 842a6d02f6
commit 483279c748
1 changed files with 7 additions and 0 deletions

View File

@ -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();