This is an automated email from the ASF dual-hosted git repository.
jackietien pushed a change to branch new_vector
in repository https://gitbox.apache.org/repos/asf/iotdb.git.
from 875816b Merge branch 'new_vector' of https://github.com/apache/iotdb
into new_vector
add 7c398bb [IOTDB-1859] CI fails on coveralls caused by openapi
generated files (#4364)
add e085250 [IOTDB-1990] Fix uncheck null result by calling
IReaderByTimestamp.getValuesInTimestamps() (#4358)
add 480c0f3 [ISSUE-4314] [docs] fix the Url of 'Get started quickly' in
the file ContributeGuide.md (#4368)
add 16fb554 [IOTDB-1859] CI fails on coveralls caused by openapi
generated files (#4370)
add 973157a Adapt serialization/deserialization in CreateTemplatePlan
with former template structure (#4355)
add 4c80522 [IOTDB-2003] add overwrite method with @Override (#4374)
add 4f615ea [IoTDB-1865]【Cluster】Compaction is blocking when removing old
files (#4365)
add 1e43fc7 [IOTDB-2001] Remove redundant StorageGroupNotReadyException
(#4377)
new 463cf70 fix conflicts
The 1 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:
.../cluster/query/fill/ClusterFillExecutor.java | 2 +-
.../iotdb/cluster/query/reader/DataSourceInfo.java | 5 +-
.../query/reader/mult/MultDataSourceInfo.java | 5 +-
docs/Development/ContributeGuide.md | 2 +-
pom.xml | 1 +
.../WrappedSingleThreadScheduledExecutor.java | 17 ++
.../org/apache/iotdb/db/engine/StorageEngine.java | 5 -
.../AbstractCrossSpaceCompactionSelector.java | 1 +
.../AbstractInnerSpaceCompactionSelector.java | 1 +
.../SizeTieredCompactionRecoverTask.java | 1 +
.../compaction/task/AbstractCompactionTask.java | 1 +
.../apache/iotdb/db/engine/flush/FlushManager.java | 1 +
.../modification/utils/TracedBufferedReader.java | 8 +
.../iotdb/db/metadata/mnode/IEntityMNode.java | 1 +
.../iotdb/db/metadata/mnode/InternalMNode.java | 1 +
.../iotdb/db/metadata/template/Template.java | 56 +++--
.../db/qp/physical/crud/CreateTemplatePlan.java | 103 ++++++++-
.../db/qp/physical/crud/InsertMultiTabletPlan.java | 2 +
.../physical/crud/InsertRowsOfOneDevicePlan.java | 1 +
.../iotdb/db/qp/physical/crud/InsertRowsPlan.java | 1 +
.../qp/physical/sys/CreateMultiTimeSeriesPlan.java | 1 +
.../iotdb/db/qp/utils/EmptyOutputStream.java | 1 +
.../iotdb/db/query/control/QueryFileManager.java | 38 +--
.../dataset/RawQueryDataSetWithValueFilter.java | 4 +-
.../db/query/executor/AggregationExecutor.java | 6 +-
.../iotdb/db/metadata/MManagerBasicTest.java | 1 +
.../org/apache/iotdb/db/metadata/TemplateTest.java | 254 +++++++++++++++++++++
.../iotdb/db/metadata/mlog/MLogUpgraderTest.java | 72 ++++++
28 files changed, 524 insertions(+), 68 deletions(-)
create mode 100644
server/src/test/java/org/apache/iotdb/db/metadata/TemplateTest.java