You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by xu...@apache.org on 2022/01/15 06:37:42 UTC

[iotdb] 02/03: Merge branch 'master' of github.com:apache/iotdb into remove_stat_xkf

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

xuekaifeng pushed a commit to branch remove_stat_xkf
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit c35c88fae321adda139e50cbd3fec4612b123445
Merge: 18b6351 46ee27b
Author: 151250176 <15...@smail.nju.edu.cn>
AuthorDate: Sat Jan 15 14:32:00 2022 +0800

    Merge branch 'master' of github.com:apache/iotdb into remove_stat_xkf

 .../org/apache/iotdb/db/qp/sql/IoTDBSqlLexer.g4    |   4 +
 .../org/apache/iotdb/db/qp/sql/IoTDBSqlParser.g4   |   2 +-
 .../Advanced-Features/Continuous-Query.md          |  97 +++++++--
 .../UserGuide/System-Tools/TsFileSelfCheck-Tool.md |  42 ++++
 .../Advanced-Features/Continuous-Query.md          | 114 +++++++---
 .../UserGuide/System-Tools/TsFileSelfCheck-Tool.md |  42 ++++
 .../aligned/IOTDBInsertAlignedValuesIT.java        |   3 +
 .../IoTDBRawQueryWithoutValueFilter3IT.java        |  64 ++++++
 .../org/apache/iotdb/db/conf/IoTDBConstant.java    |   1 +
 .../db/cq/ContinuousQuerySchemaCheckTask.java      |  96 +++++++++
 .../apache/iotdb/db/cq/ContinuousQueryService.java |  48 +++--
 .../apache/iotdb/db/cq/ContinuousQueryTask.java    |  32 ++-
 .../TsFileTimeseriesMetadataException.java         |  16 +-
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |   4 +
 .../logical/sys/CreateContinuousQueryOperator.java |   8 +-
 .../qp/physical/sys/CreateContinuousQueryPlan.java |  24 ++-
 .../apache/iotdb/db/qp/sql/IoTDBSqlVisitor.java    |   6 +-
 .../query/dataset/ShowContinuousQueriesResult.java |  21 +-
 .../iotdb/db/query/reader/series/SeriesReader.java |  19 +-
 .../java/org/apache/iotdb/db/service/IoTDB.java    |   4 +-
 .../db/service/thrift/impl/TSServiceImpl.java      |  10 +-
 .../apache/iotdb/db/tools/TsFileSelfCheckTool.java | 190 ++++++++++++++++
 .../apache/iotdb/db/tools/TsFileSketchTool.java    |   1 +
 .../iotdb/db/tools/TsFileSelfCheckToolTest.java    | 239 +++++++++++++++++++++
 .../TsFileStatisticsMistakesException.java}        |  10 +-
 .../file/metadata/statistics/BinaryStatistics.java |  15 ++
 .../metadata/statistics/BooleanStatistics.java     |  17 ++
 .../file/metadata/statistics/DoubleStatistics.java |  20 ++
 .../file/metadata/statistics/FloatStatistics.java  |  20 ++
 .../metadata/statistics/IntegerStatistics.java     |  19 ++
 .../file/metadata/statistics/LongStatistics.java   |  19 ++
 .../iotdb/tsfile/read/TsFileCheckStatus.java       |   7 +-
 .../iotdb/tsfile/read/TsFileSequenceReader.java    | 135 ++++++++++++
 33 files changed, 1212 insertions(+), 137 deletions(-)