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:
Steve Ebersole 2010-07-23 17:15:54 +00:00
parent c508fd2652
commit 537f135ee1
1 changed files with 1 additions and 1 deletions

View File

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