Skip to content

Commit

Permalink
expose a private field to Hibernate Reactive
Browse files Browse the repository at this point in the history
needed to support Criteria queries
  • Loading branch information
gavinking authored and dreab8 committed May 26, 2020
1 parent f2a72d4 commit 946e867
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -61,6 +61,10 @@ public CriteriaQueryImpl(
this.queryStructure = new QueryStructure<T>( this, criteriaBuilder );
}

protected QueryStructure<T> getQueryStructure() {
return queryStructure;
}

@Override
public Class<T> getResultType() {
return returnType;
Expand Down

0 comments on commit 946e867

Please sign in to comment.