You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2019/12/01 01:20:39 UTC

[incubator-iotdb] branch master updated (5e7bff4 -> 06dfc7b)

This is an automated email from the ASF dual-hosted git repository.

qiaojialin pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.


    from 5e7bff4  Fix Travis CI for WinOS + OpenJDK11 (#605)
     add e7d1049  IOTDB-298 refactor: change aggregation function's name:last to last_value, first to first_value
     add 68eea70  fix bug
     add deb04e9  modify docs in UserGuide
     add 9c23f06  Merge branch 'master' into last
     add 82ad1e6  revert last first
     add 06dfc7b  Merge pull request #606 from apache/last

No new revisions were added by this update.

Summary of changes:
 .../5-Operation Manual/4-SQL Reference.md          | 14 +++-
 .../5-Operation Manual/4-SQL Reference.md          | 18 +++--
 .../apache/iotdb/db/qp/constant/SQLConstant.java   | 14 ++++
 ...{FirstAggrFunc.java => FirstValueAggrFunc.java} |  4 +-
 .../{LastAggrFunc.java => LastValueAggrFunc.java}  |  4 +-
 .../db/query/executor/AggregateEngineExecutor.java |  6 +-
 .../iotdb/db/query/factory/AggreFuncFactory.java   | 28 ++++----
 .../org/apache/iotdb/db/service/TSServiceImpl.java | 19 +++--
 .../org/apache/iotdb/db/integration/Constant.java  |  8 +--
 .../iotdb/db/integration/IOTDBGroupByIT.java       | 28 ++++----
 .../iotdb/db/integration/IoTDBAggregationIT.java   | 34 ++++-----
 .../integration/IoTDBAggregationLargeDataIT.java   | 80 +++++++++++-----------
 .../integration/IoTDBAggregationSmallDataIT.java   | 32 ++++-----
 .../tsfile/common/constant/StatisticConstant.java  | 41 -----------
 .../filter}/StatisticsClassException.java          |  4 +-
 .../file/metadata/statistics/BinaryStatistics.java |  1 +
 .../metadata/statistics/BooleanStatistics.java     |  2 +-
 .../file/metadata/statistics/Statistics.java       |  1 +
 .../metadata/statistics/LongStatisticsTest.java    |  1 +
 19 files changed, 167 insertions(+), 172 deletions(-)
 rename server/src/main/java/org/apache/iotdb/db/query/aggregation/impl/{FirstAggrFunc.java => FirstValueAggrFunc.java} (97%)
 rename server/src/main/java/org/apache/iotdb/db/query/aggregation/impl/{LastAggrFunc.java => LastValueAggrFunc.java} (97%)
 delete mode 100644 tsfile/src/main/java/org/apache/iotdb/tsfile/common/constant/StatisticConstant.java
 rename tsfile/src/main/java/org/apache/iotdb/tsfile/{file/metadata/statistics => exception/filter}/StatisticsClassException.java (88%)