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/29 14:49:11 UTC

[incubator-iotdb] branch refine_digest updated (d15d85c -> 97f8a7d)

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 d15d85c  Merge remote-tracking branch 'origin/master' into refine_digest
    omit b0696c3  fix review
    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)
     add 97f8a7d  fix review

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d15d85c)
            \
             N -- N -- N   refs/heads/refine_digest (97f8a7d)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

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 +-
 .../iotdb/tsfile/file/metadata/ChunkMetaData.java  |   1 +
 .../file/metadata/statistics/BinaryStatistics.java |   6 +-
 .../iotdb/tsfile/utils/ReadWriteIOUtils.java       |  34 +-
 30 files changed, 304 insertions(+), 1005 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%)