Skip to content

Commit

Permalink
HHH-8404: Correctly render 'ListIndexExpression'
Browse files Browse the repository at this point in the history
Conflicts:
	hibernate-entitymanager/src/main/java/org/hibernate/jpa/criteria/expression/ListIndexExpression.java
  • Loading branch information
ben-arbitrage authored and brmeyer committed Jan 20, 2014
1 parent c574fe0 commit 3d2d9bf
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -60,7 +60,7 @@ public void registerParameters(ParameterRegistry registry) {

public String render(CriteriaQueryCompiler.RenderingContext renderingContext) {
return "index("
+ origin.getPathIdentifier() + '.' + getListAttribute().getName()
+ origin.getPathIdentifier()
+ ")";
}

Expand Down

0 comments on commit 3d2d9bf

Please sign in to comment.