#1753 - Tidy for Issue with using the Formula-Properties

This commit is contained in:
rob bygrave
2019-07-14 16:03:07 +12:00
parent 1ffe359573
commit 496672b394
4 changed files with 38 additions and 18 deletions
@@ -299,8 +299,7 @@ public final class SqlTreeBuilder {
if (manyWhereJoins.isFormulaWithJoin()) {
for (String property: manyWhereJoins.getFormulaJoinProperties()) {
STreeProperty beanProperty = desc.findPropertyFromPath(property);
SqlTreeNodeFormulaWhereJoin nodeJoin = new SqlTreeNodeFormulaWhereJoin(beanProperty, SqlJoinType.OUTER);
myJoinList.add(nodeJoin);
myJoinList.add(new SqlTreeNodeFormulaWhereJoin(beanProperty, SqlJoinType.OUTER));
}
}
}