This is an automated email from the ASF dual-hosted git repository.
haonan pushed a change to branch rc/1.2.0
in repository https://gitbox.apache.org/repos/asf/iotdb.git
from a6d1f5983d4 [To rel/1.2] Fix time partition interval config load bug
(#10020)
add b10aa943a0b [IOTDB-5960] Fix bug in groupByCount in 1C3D
add a95037d9913 [To rel/1.2] Delete useless dependency of previously
removed module (#10029)
add 497f85702fe [IOTDB-5963] Make sure that TsBlock blocked on memory is
added in queue before the next TsBlock returned by root operator[IOTDB-5963]
Make sure that TsBlock blocked on memory is added in queue before the next
TsBlock returned by root operator[IOTDB-5963] Make sure that TsBlock blocked on
memory is added in queue before the next TsBlock returned by root operator
(#10028)
add 3310fa5784f [To rel/1.2] Fix ConcurrentModificationException in
updating FileMetrics (#10031)
add e078ccc3c77 [To rel/1.2]Added ITs for logical views & Fix duplicate
rows in show views. (#10026)
add 7eb8b5c986b [To Rel/1.2]Remove max pool size metric
add 7c295f95370 Get canonical path when using IOTDB_DATA_HOME and
IOTDB_HOME (#10035)
add 77e2e7675ba [To rel/1.2] Fix SchemaTree.hasView check during query
analysis (#10039)
add f8f3ad79a61 [To rel/1.2] Add schema_ engine_mode config to
iotdb-commons.properties and User-Guide (#10047)
No new revisions were added by this update.
Summary of changes:
.github/workflows/influxdb-protocol.yml | 67 -----
distribution/pom.xml | 6 -
docs/UserGuide/Reference/Common-Config-Manual.md | 9 +
.../zh/UserGuide/Reference/Common-Config-Manual.md | 9 +
example/influxdb-protocol-example/pom.xml | 39 ---
.../org/apache/iotdb/influxdb/InfluxDBExample.java | 110 --------
example/pom.xml | 1 -
integration-test/pom.xml | 5 -
.../iotdb/db/it/groupby/IoTDBGroupByCountIT.java | 7 +
.../iotdb/db/it/view/IoTDBCreateAndShowViewIT.java | 294 +++++++++++++++++++++
.../resources/conf/iotdb-common.properties | 5 +
.../commons/concurrent/ThreadPoolMetrics.java | 16 --
.../apache/iotdb/commons/conf/CommonConfig.java | 31 +--
.../org/apache/iotdb/commons/utils/FileUtils.java | 12 +
.../java/org/apache/iotdb/db/conf/IoTDBConfig.java | 21 +-
.../mpp/common/schematree/ClusterSchemaTree.java | 4 +-
.../mpp/execution/exchange/SharedTsBlockQueue.java | 6 +-
.../planner/plan/parameter/GroupByParameter.java | 2 +
.../iotdb/db/service/metrics/FileMetrics.java | 9 +-
.../common/schematree/ClusterSchemaTreeTest.java | 21 ++
20 files changed, 397 insertions(+), 277 deletions(-)
delete mode 100644 .github/workflows/influxdb-protocol.yml
delete mode 100644 example/influxdb-protocol-example/pom.xml
delete mode 100644
example/influxdb-protocol-example/src/main/java/org/apache/iotdb/influxdb/InfluxDBExample.java
create mode 100644
integration-test/src/test/java/org/apache/iotdb/db/it/view/IoTDBCreateAndShowViewIT.java