Skip to content

Commit

Permalink
Fix TupleElement#getAlias() returning null
Browse files Browse the repository at this point in the history
  • Loading branch information
dreab8 committed Sep 25, 2021
1 parent 9d131ce commit fcfb207
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Expand Up @@ -105,4 +105,9 @@ public SqmAttributeJoin<O, E> makeCopy(SqmCreationProcessingState creationProces
nodeBuilder()
);
}

@Override
public String getAlias() {
return getExplicitAlias();
}
}
Expand Up @@ -85,5 +85,8 @@ public SqmAttributeJoin<O, T> makeCopy(SqmCreationProcessingState creationProces
);
}


@Override
public String getAlias() {
return getExplicitAlias();
}
}

0 comments on commit fcfb207

Please sign in to comment.