Skip to content

Commit

Permalink
[#10548] Unnecessary stack elements when SelectQueryImpl doesn't have…
Browse files Browse the repository at this point in the history
… both semi join and where clause predicates
  • Loading branch information
lukaseder committed Aug 27, 2020
1 parent d322ea4 commit d98d9eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jOOQ/src/main/java/org/jooq/impl/SelectQueryImpl.java
Expand Up @@ -1722,7 +1722,7 @@ else if (!where.hasWhere() && semiAntiJoinPredicates == null)
actual.addConditions(semiAntiJoinPredicates);

if (where.hasWhere())
actual.addConditions(where);
actual.addConditions(where.getWhere());

context.formatSeparator()
.visit(K_WHERE)
Expand Down

0 comments on commit d98d9eb

Please sign in to comment.