HHH-5295 - Rendered JPAQL query shall be the same all the times, aliases shall not have random indexes
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20024 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
c508fd2652
commit
537f135ee1
|
@ -70,7 +70,7 @@ public class QueryStructure<T> implements Serializable {
|
|||
|
||||
private boolean distinct;
|
||||
private Selection<? extends T> selection;
|
||||
private Set<Root<?>> roots = new HashSet<Root<?>>();
|
||||
private Set<Root<?>> roots = new LinkedHashSet<Root<?>>();
|
||||
private Set<FromImplementor> correlationRoots;
|
||||
private Predicate restriction;
|
||||
private List<Expression<?>> groupings = Collections.emptyList();
|
||||
|
|
Loading…
Reference in New Issue