This is an automated email from the ASF dual-hosted git repository.
ntimofeev pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/cayenne.git.
from 33a6436 Merge pull request #428 from
stariy95/4.2-FIX-CAY-2660-bigdecimal
new 1d14284 CAY-2674 Support in-memory evaluation of aggregate functions
new 7411fdf CAY-2673 Support ordering by aggregate functions
new accb1e2 Update RELEASE-NOTES.txt: CAY-2673 Support ordering by
aggregate functions CAY-2674 Support in-memory evaluation of aggregate
functions
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
RELEASE-NOTES.txt | 2 +
.../access/translator/select/GroupByStage.java | 11 ++
.../access/translator/select/OrderingStage.java | 17 +--
.../translator/select/ResultNodeDescriptor.java | 6 +-
.../exp/parser/ASTAggregateFunctionCall.java | 27 ++++
.../java/org/apache/cayenne/exp/parser/ASTAvg.java | 20 +++
.../org/apache/cayenne/exp/parser/ASTCount.java | 7 +
.../java/org/apache/cayenne/exp/parser/ASTMax.java | 9 ++
.../java/org/apache/cayenne/exp/parser/ASTMin.java | 9 ++
.../exp/AggregateExpInMemoryEvaluationIT.java | 146 +++++++++++++++++++++
.../cayenne/query/ObjectSelect_AggregateIT.java | 43 +++++-
11 files changed, 281 insertions(+), 16 deletions(-)
create mode 100644
cayenne-server/src/test/java/org/apache/cayenne/exp/AggregateExpInMemoryEvaluationIT.java