mirror of https://github.com/apache/openjpa.git
Oversight in QueryDefinition.selectDistinct() boolean argument corrected
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@747848 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
909c838138
commit
094f914969
|
@ -300,7 +300,7 @@ public class QueryDefinitionImpl extends ExpressionImpl
|
|||
}
|
||||
|
||||
public QueryDefinition selectDistinct(List<SelectItem> items) {
|
||||
return select(items, false);
|
||||
return select(items, true);
|
||||
}
|
||||
|
||||
private QueryDefinition select(List<SelectItem> items, boolean isDistinct) {
|
||||
|
|
Loading…
Reference in New Issue