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

[iotdb] branch master updated (001490b -> c31903b)

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

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


    from 001490b  [IOTDB-2315] Modify some problems of metric (#4782)
     add c31903b  [IOTDB-2353] CQ: support specifying first execution time (BOUNDARY) when creating CQ (#4831)

No new revisions were added by this update.

Summary of changes:
 .../org/apache/iotdb/db/qp/sql/IoTDBSqlLexer.g4    |   4 +
 .../org/apache/iotdb/db/qp/sql/IoTDBSqlParser.g4   |   2 +-
 .../Advanced-Features/Continuous-Query.md          |  97 ++++++++++++++----
 .../Advanced-Features/Continuous-Query.md          | 114 ++++++++++++++++-----
 .../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 +++---
 .../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 ++--
 .../java/org/apache/iotdb/db/service/IoTDB.java    |   4 +-
 .../db/service/thrift/impl/TSServiceImpl.java      |  10 +-
 15 files changed, 355 insertions(+), 116 deletions(-)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/cq/ContinuousQuerySchemaCheckTask.java