Skip to content

Commit

Permalink
Avoid selection of duplicate columns
Browse files Browse the repository at this point in the history
  • Loading branch information
IAM20 committed Sep 20, 2024
1 parent 906e5e1 commit b8669ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ private SelectBuilder.SelectWhere selectBuilder(Collection<SqlIdentifier> keyCol

Table table = getTable();

List<Expression> columnExpressions = new ArrayList<>();
Set<Expression> columnExpressions = new LinkedHashSet<>();

List<Join> joinTables = new ArrayList<>();
for (PersistentPropertyPath<RelationalPersistentProperty> path : mappingContext
Expand Down

0 comments on commit b8669ae

Please sign in to comment.