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/11/30 07:39:10 UTC

[incubator-iotdb] branch refine_digest updated (b03fee8 -> b40e62d)

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

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


    omit b03fee8  Merge remote-tracking branch 'origin/master' into refine_digest
    omit 2785bd1  [IOTDB-298] Refactor the "last" and "first" aggregators (#594)
    omit 15643e1  [IOTDB-322] upgrade to thrift 0.12.0 (#589)
    omit ba2db62  Add CN document of TsFile (#575)
    omit 955cd99  [IOTDB-321] Improve some SQL related definition in documents (#592)
    omit adfc5ea   [IOTDB-323] Batch insert in session (#588)
    omit 6bae410  Move the vulnera-checks section into the apache-release profile (#590)
    omit c057827  Fix "flush + wrong aggregation" causes failed query in v0.8 (#591)

This update removed existing revisions from the reference, leaving the
reference pointing at a previous point in the repository history.

 * -- * -- N   refs/heads/refine_digest (b40e62d)
            \
             O -- O -- O   (b03fee8)

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .travis.yml                                        |  13 +-
 .../1-DDL (Data Definition Language).md            |  37 --
 .../5-Operation Manual/4-SQL Reference.md          |  26 +-
 .../8-System Design (Developer)/1-Hierarchy.md     | 392 +--------------------
 .../UserGuide/4-Client/3-Programming - Session.md  |   4 -
 .../1-DDL (Data Definition Language).md            |  38 +-
 .../5-Operation Manual/4-SQL Reference.md          |  30 +-
 .../8-System Design (Developer)/1-Hierarchy.md     |  11 +-
 .../main/java/org/apache/iotdb/SessionExample.java |  34 --
 .../java/org/apache/iotdb/jdbc/IoTDBStatement.java |   2 +-
 pom.xml                                            | 170 ++++-----
 .../engine/storagegroup/StorageGroupProcessor.java |   1 +
 ...{FirstValueAggrFunc.java => FirstAggrFunc.java} |   4 +-
 .../{LastValueAggrFunc.java => LastAggrFunc.java}  |   4 +-
 .../db/query/executor/AggregateEngineExecutor.java |   6 +-
 .../iotdb/db/query/factory/AggreFuncFactory.java   |  12 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java | 112 +++---
 .../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 +-
 service-rpc/rpc-changelist.md                      |   2 -
 service-rpc/src/main/thrift/rpc.thrift             |  12 -
 .../java/org/apache/iotdb/session/Session.java     | 102 ++----
 .../org/apache/iotdb/session/IoTDBSessionIT.java   |  70 +---
 .../tsfile/common/constant/StatisticConstant.java  |   4 +-
 27 files changed, 291 insertions(+), 977 deletions(-)
 rename server/src/main/java/org/apache/iotdb/db/query/aggregation/impl/{FirstValueAggrFunc.java => FirstAggrFunc.java} (97%)
 rename server/src/main/java/org/apache/iotdb/db/query/aggregation/impl/{LastValueAggrFunc.java => LastAggrFunc.java} (97%)