mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#1753 - Tidy for Issue with using the Formula-Properties
This commit is contained in:
@@ -265,9 +265,8 @@ class CQueryBuilder {
|
||||
if (!countDistinct) {
|
||||
// minimise select clause for standard count
|
||||
if (manyWhereJoins.isFormulaWithJoin()) {
|
||||
// FIXME: we join the strings here and on the other side we split them again
|
||||
// this is not yet optimal
|
||||
query.select(String.join(",",manyWhereJoins.getFormulaJoinProperties()));
|
||||
// Note that this is not yet optimal (split and join)
|
||||
query.select(String.join(",", manyWhereJoins.getFormulaJoinProperties()));
|
||||
} else {
|
||||
query.setSelectId();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user