Skip to content

Commit

Permalink
Queries created with criteria api with many joins - fix (eclipse-ee4j…
Browse files Browse the repository at this point in the history
…#2129)

Signed-off-by: Radek Felcman <[email protected]>
  • Loading branch information
rfelcman authored May 6, 2024
1 parent f194e68 commit e60e793
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
Expand Down Expand Up @@ -77,8 +77,8 @@ public class FromImpl<Z, X> extends PathImpl<X> implements jakarta.persistence.
public <T> FromImpl(Path<Z> parentPath, ManagedType managedType, Metamodel metamodel, Class<X> javaClass, org.eclipse.persistence.expressions.Expression expressionNode, Bindable<T> modelArtifact) {
super(parentPath, metamodel, javaClass, expressionNode, modelArtifact);
this.managedType = managedType;
this.joins = new HashSet<>();
this.fetches = new HashSet<>();
this.joins = new LinkedHashSet<>();
this.fetches = new LinkedHashSet<>();
}

public <T> FromImpl(Path<Z> parentPath, ManagedType managedType, Metamodel metamodel, Class<X> javaClass, org.eclipse.persistence.expressions.Expression expressionNode, Bindable<T> modelArtifact, FromImpl correlatedParent) {
Expand Down

0 comments on commit e60e793

Please sign in to comment.