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

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


    from 1af785f  fix bug
     new 305906a  fix a bug of aggre query and groupby query
     add 8fc0c7e  fix unstable unit test and polish ReadOnlyTsFile query logic 
(#177)
     add 5b26774  modify error statement in doc (#182)
     add 84bdd5a  [IOTDB-100]Fix return error message while executing sum 
aggregation query (#181)
     add 2fbd949  [IOTDB-95]keep stack trace when logging or throwing an 
Exception (#180)
     add 000891f  fix bug where IOTDB_HOME is misused (#184)
     new f57d49f  merge master
     new 130bcff  update engine properties
     new 3f7af57  update engine properties
     new ffc9d89  update

The 5 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:
 README.md                                          |   9 +
 .../iotdb/cluster/entity/raft/RaftService.java     |   4 +-
 .../cluster/query/executor/ClusterQueryRouter.java |   6 +
 .../rpc/raft/impl/RaftNodeAsClientManager.java     |  30 ---
 docs/Documentation/QuickStart.md                   |  10 +
 .../UserGuideV0.7.0/4-Deployment and Management.md |  71 +++++-
 .../UserGuideV0.7.0/5-SQL Documentation.md         |   4 +-
 .../iotdb/tsfile/hadoop/TSFRecordWriter.java       |  11 +-
 .../iotdb/tsfile/hadoop/example/TsFileHelper.java  |   6 +-
 .../cn/edu/thu/tsfile/hadoop/TsFileTestHelper.java |   6 +-
 iotdb-cli/cli/bin/export-csv.bat                   |  10 +-
 iotdb-cli/cli/bin/export-csv.sh                    |   8 +-
 iotdb-cli/cli/bin/import-csv.bat                   |  10 +-
 iotdb-cli/cli/bin/import-csv.sh                    |   8 +-
 iotdb-cli/cli/bin/start-client.bat                 |   8 +-
 iotdb-cli/cli/bin/start-client.sh                  |   6 +-
 .../java/org/apache/iotdb/cli/tool/ImportCsv.java  |   4 +-
 iotdb/iotdb/conf/iotdb-engine.properties           |   2 +-
 .../iotdb/db/auth/authorizer/BasicAuthorizer.java  |   3 +-
 .../exception/BufferWriteProcessorException.java   |   2 +-
 .../db/exception/FileNodeProcessorException.java   |   2 +-
 .../db/exception/OverflowProcessorException.java   |   2 +-
 .../db/exception/qp/IllegalASTFormatException.java |   7 +
 .../db/exception/qp/LogicalOperatorException.java  |   7 +
 .../db/exception/qp/LogicalOptimizeException.java  |   7 +
 .../db/exception/qp/QueryProcessorException.java   |   4 +
 .../org/apache/iotdb/db/qp/QueryProcessor.java     |   2 +-
 .../iotdb/db/qp/executor/QueryProcessExecutor.java |   2 +-
 .../db/qp/logical/crud/BasicFunctionOperator.java  |   2 +-
 .../iotdb/db/qp/strategy/PhysicalGenerator.java    |   2 +-
 .../qp/strategy/optimizer/ConcatPathOptimizer.java |   9 +-
 .../db/query/aggregation/AggregateFunction.java    |   1 -
 .../db/query/aggregation/impl/MeanAggrFunc.java    |  11 +-
 .../db/query/aggregation/impl/SumAggrFunc.java     |  10 +
 .../apache/iotdb/db/service/CloseMergeService.java |   6 +-
 .../java/org/apache/iotdb/db/service/IoTDB.java    |   9 +-
 .../org/apache/iotdb/db/service/JDBCService.java   |   9 +-
 .../org/apache/iotdb/db/service/JMXService.java    |   5 +-
 .../java/org/apache/iotdb/db/service/Monitor.java  |   3 +-
 .../apache/iotdb/db/service/RegisterManager.java   |   2 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java |  13 +-
 .../org/apache/iotdb/db/sql/parse/ParseDriver.java |   2 +-
 .../org/apache/iotdb/db/utils/RecordUtils.java     |   2 +-
 .../writelog/manager/MultiFileLogNodeManager.java  |   9 +-
 .../db/writelog/node/ExclusiveWriteLogNode.java    |   2 +-
 .../recover/ExclusiveLogRecoverPerformer.java      |  11 +-
 .../db/writelog/replay/ConcreteLogReplayer.java    |   2 +-
 .../iotdb/db/integration/IoTDBAggregationIT.java   |  86 +++++++-
 .../org/apache/iotdb/jdbc/IoTDBConnection.java     |   6 +-
 .../java/org/apache/iotdb/jdbc/IoTDBStatement.java |   6 +-
 .../org/apache/iotdb/tsfile/DefaultSource.scala    |   9 +-
 .../tsfile/common/constant/QueryConstant.java      |   6 -
 .../tsfile/exception/write/PageException.java      |   8 +
 .../exception/write/WriteProcessException.java     |  16 +-
 .../apache/iotdb/tsfile/read/ReadOnlyTsFile.java   |  17 +-
 .../apache/iotdb/tsfile/read/common/TimeRange.java | 225 +++++++++++--------
 .../tsfile/read/controller/MetadataQuerier.java    |  39 +---
 .../read/controller/MetadataQuerierByFileImpl.java | 189 ++++++++--------
 .../tsfile/read/query/executor/TsFileExecutor.java | 100 ++++-----
 .../iotdb/tsfile/write/chunk/ChunkBuffer.java      |   7 +-
 .../iotdb/tsfile/write/chunk/ChunkWriterImpl.java  |   7 +-
 .../iotdb/tsfile/read/ReadInPartitionTest.java     | 244 ++++++++++++---------
 .../iotdb/tsfile/read/common/TimeRangeTest.java    |  42 +++-
 .../controller/MetadataQuerierByFileImplTest.java  | 156 ++++++++-----
 64 files changed, 880 insertions(+), 644 deletions(-)

Reply via email to