This is an automated email from the ASF dual-hosted git repository.
rong pushed a change to branch select-into
in repository https://gitbox.apache.org/repos/asf/iotdb.git.
from 3472977 fix a bug in test reported by SonarCloud
add 5e6fc31 add docs for the not supported
add 56691a9 rename: targetPathIndexToQueryDataSetIndex ->
queryDataSetIndexes
add 5a348a4 [IOTDB-1478]The whole IoTDB can not read/write if any one sg
is not ready (#3554)
add 3c6925c [IOTDB-959]Add createStorageGroup Grammar (#3608)
add 0791e07 mod note (#3615)
add 72799f3 [IOTDB-1503] 1 node crash causes whole cluster cannot work
(#3579)
add 469f78b Remove path registration in IoTDBSink (#3620)
add 511d5f4 Update ContributeGuide.md (#3611)
add 2ba8c78 [IOTDB-1509] show timeseries throw a bug (#3556)
add e0ce236 remove unnecessary testcontainer IT (#3625)
add c05a7c5 [IOTDB-1528] CQ IT unstable: sometimes fails on
checkCQExecutionResult() (#3624)
add 4fcd755 [IOTDB-1500] Remove current dynamic query memory control
(#3563)
add 9437339 Fix compile error in assignQueryId (#3629)
add 33eb88a resolve conflicts
No new revisions were added by this update.
Summary of changes:
.../antlr4/org/apache/iotdb/db/qp/sql/SqlBase.g4 | 1 +
.../apache/iotdb/cluster/metadata/CMManager.java | 59 ++++++---
.../apache/iotdb/cluster/metadata/MetaPuller.java | 27 ++--
.../cluster/query/ClusterPhysicalGenerator.java | 5 +-
.../iotdb/cluster/query/ClusterPlanExecutor.java | 40 ++++--
.../apache/iotdb/cluster/query/ClusterPlanner.java | 17 ++-
.../iotdb/cluster/query/LocalQueryExecutor.java | 32 ++---
.../cluster/query/aggregate/ClusterAggregator.java | 9 +-
.../cluster/query/fill/ClusterPreviousFill.java | 10 +-
.../query/groupby/RemoteGroupByExecutor.java | 27 ++--
.../query/last/ClusterLastQueryExecutor.java | 26 ++--
.../cluster/query/manage/ClusterQueryManager.java | 8 +-
.../cluster/query/reader/ClusterReaderFactory.java | 9 +-
.../iotdb/cluster/query/reader/DataSourceInfo.java | 28 +++--
.../reader/RemoteSeriesReaderByTimestamp.java | 3 +
.../query/reader/RemoteSimpleSeriesReader.java | 3 +
.../query/reader/mult/MultDataSourceInfo.java | 8 +-
.../query/reader/mult/RemoteMultSeriesReader.java | 10 +-
.../apache/iotdb/cluster/server/ClientServer.java | 8 +-
.../cluster/server/heartbeat/HeartbeatThread.java | 6 +
.../cluster/server/member/MetaGroupMember.java | 3 +-
.../org/apache/iotdb/cluster/common/IoTDBTest.java | 3 +-
.../query/ClusterAggregateExecutorTest.java | 4 +-
.../query/ClusterDataQueryExecutorTest.java | 10 +-
.../cluster/query/ClusterFillExecutorTest.java | 4 +-
.../query/ClusterPhysicalGeneratorTest.java | 3 +-
.../cluster/query/ClusterPlanExecutorTest.java | 4 +-
.../cluster/query/ClusterQueryRouterTest.java | 17 ++-
.../query/ClusterUDTFQueryExecutorTest.java | 8 +-
.../iotdb/cluster/query/LoadConfigurationTest.java | 2 +-
.../ClusterGroupByNoVFilterDataSetTest.java | 2 +-
.../groupby/ClusterGroupByVFilterDataSetTest.java | 2 +-
.../query/groupby/MergeGroupByExecutorTest.java | 4 +-
.../query/groupby/RemoteGroupByExecutorTest.java | 4 +-
.../query/manage/ClusterQueryManagerTest.java | 12 +-
.../query/reader/ClusterReaderFactoryTest.java | 2 +-
.../query/reader/ClusterTimeGeneratorTest.java | 4 +-
.../cluster/server/member/DataGroupMemberTest.java | 2 +-
.../cluster/server/member/MetaGroupMemberTest.java | 4 +-
docs/Development/ContributeGuide.md | 37 ++++--
docs/UserGuide/Advanced-Features/Select-Into.md | 4 +
.../DDL-Data-Definition-Language.md | 6 +-
docs/zh/UserGuide/Advanced-Features/Select-Into.md | 4 +
.../DDL-Data-Definition-Language.md | 6 +-
.../java/org/apache/iotdb/flink/IoTDBSink.java | 26 +---
.../apache/iotdb/db/cq/ContinuousQueryTask.java | 6 +-
.../org/apache/iotdb/db/engine/StorageEngine.java | 138 +++++----------------
.../selectinto/InsertTabletPlanGenerator.java | 14 +--
.../engine/storagegroup/StorageGroupProcessor.java | 10 +-
.../virtualSg/VirtualStorageGroupManager.java | 97 ++++++++-------
.../exception/query/PathNumOverLimitException.java | 13 +-
.../org/apache/iotdb/db/monitor/StatMonitor.java | 2 +-
.../main/java/org/apache/iotdb/db/qp/Planner.java | 37 +++---
.../apache/iotdb/db/qp/sql/IoTDBSqlVisitor.java | 10 ++
.../iotdb/db/qp/strategy/PhysicalGenerator.java | 3 +-
.../qp/strategy/optimizer/ConcatPathOptimizer.java | 8 +-
.../qp/strategy/optimizer/ILogicalOptimizer.java | 3 +-
.../apache/iotdb/db/qp/utils/WildcardsRemover.java | 28 ++---
.../db/query/control/QueryResourceManager.java | 48 +------
.../iotdb/db/query/control/SessionManager.java | 10 +-
.../org/apache/iotdb/db/service/TSServiceImpl.java | 94 ++------------
.../db/integration/IoTDBContinuousQueryIT.java | 104 ++++++----------
.../db/integration/IoTDBCreateStorageGroupIT.java | 128 +++++++++++++++++++
.../db/integration/IoTDBSequenceDataQueryIT.java | 12 +-
.../iotdb/db/integration/IoTDBSeriesReaderIT.java | 11 +-
.../iotdb/db/qp/logical/LogicalPlanSmallTest.java | 2 +-
.../iotdb/db/qp/physical/PhysicalPlanTest.java | 8 ++
.../apache/iotdb/db/utils/EnvironmentUtils.java | 7 +-
.../apache/iotdb/spark/db/EnvironmentUtils.java | 111 ++++++++---------
.../test/java/org/apache/iotdb/db/sql/Cases.java | 109 ----------------
70 files changed, 710 insertions(+), 816 deletions(-)
create mode 100644
server/src/test/java/org/apache/iotdb/db/integration/IoTDBCreateStorageGroupIT.java