Skip to content

Commit

Permalink
HHH-10341 - Fix Specification violation in Implementation of TupleEle…
Browse files Browse the repository at this point in the history
…ment
  • Loading branch information
dreab8 committed Jun 28, 2016
1 parent 57b954d commit 04f1fcc
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -393,8 +393,7 @@ private void initAliases(SelectExpression[] selectExpressions) {
if ( aggregatedSelectExpression == null ) {
aliases = new String[selectExpressions.length];
for ( int i = 0; i < selectExpressions.length; i++ ) {
String alias = selectExpressions[i].getAlias();
aliases[i] = alias == null ? Integer.toString( i ) : alias;
aliases[i] = selectExpressions[i].getAlias();
}
}
else {
Expand Down

0 comments on commit 04f1fcc

Please sign in to comment.