This is an automated email from the ASF dual-hosted git repository.
JackieTien97 pushed a change to branch rc/2.0.10
in repository https://gitbox.apache.org/repos/asf/iotdb.git
from 5c003770c41 [Pipe] Fix omitted legacy tablet compatibility follow-ups
(#17929)
new 1c692299ad0 Propagate snapshot load failure during IoTConsensus
AddPeer (#17935)
new ef5f7bea7de feat(client-cpp): add SessionC DATE/BLOB support and
RowRecord getters (#17956)
new c7ba5da546a Fix aggregate write-back output database metadata (#17938)
new 178fb90a75b Fix tree model load type mismatch conversion (#17949)
new f8d3fbb9e26 Add envelope function to UDF registration script (#17971)
new ecdc54728e5 Fix IoTConsensus multi-folder snapshot load for DataRegion
(#17974)
The 6 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:
.../db/it/schema/IoTDBAlterTimeSeriesTypeIT.java | 4 +-
iotdb-client/client-cpp/src/main/SessionC.cpp | 33 ++
iotdb-client/client-cpp/src/main/SessionC.h | 12 +
.../client-cpp/src/test/cpp/sessionCIT.cpp | 42 ++-
.../statemachine/ConfigRegionStateMachine.java | 10 +-
.../persistence/executor/ConfigPlanExecutor.java | 7 +-
.../org/apache/iotdb/consensus/IStateMachine.java | 28 +-
.../consensus/iot/IoTConsensusServerImpl.java | 34 +-
.../service/IoTConsensusRPCServiceProcessor.java | 12 +-
.../ratis/ApplicationStateMachineProxy.java | 13 +-
.../simple/SimpleConsensusServerImpl.java | 4 +-
.../apache/iotdb/consensus/EmptyStateMachine.java | 4 +-
.../iot/AddPeerSnapshotLoadFailureTest.java | 354 +++++++++++++++++++++
.../iotdb/consensus/iot/util/TestStateMachine.java | 4 +-
.../apache/iotdb/consensus/ratis/TestUtils.java | 4 +-
.../consensus/simple/SimpleConsensusTest.java | 4 +-
.../dataregion/DataRegionStateMachine.java | 50 ++-
.../schemaregion/SchemaRegionStateMachine.java | 25 +-
.../db/pipe/event/common/row/PipeRowCollector.java | 24 +-
.../common/tablet/PipeRawTabletEventConverter.java | 42 ++-
.../event/common/tablet/PipeTabletCollector.java | 23 +-
.../processor/aggregate/AggregateProcessor.java | 13 +-
.../load/TreeSchemaAutoCreatorAndVerifier.java | 17 +-
.../schemaengine/schemaregion/ISchemaRegion.java | 10 +-
.../schemaregion/impl/SchemaRegionMemoryImpl.java | 6 +-
.../schemaregion/impl/SchemaRegionPBTreeImpl.java | 6 +-
.../dataregion/snapshot/SnapshotLoader.java | 47 +++
.../schemaRegion/SchemaRegionManagementTest.java | 28 +-
.../pipe/event/PipeTabletInsertionEventTest.java | 32 ++
.../plan/analyze/load/LoadTsFileAnalyzerTest.java | 64 ++++
.../dataregion/snapshot/IoTDBSnapshotTest.java | 98 ++++++
.../apache/iotdb/commons/i18n/CommonMessages.java | 8 +
.../apache/iotdb/commons/i18n/CommonMessages.java | 8 +
.../iotdb/commons/partition/DataPartition.java | 18 +-
library-udf/src/assembly/tools/register-UDF.bat | 1 +
library-udf/src/assembly/tools/register-UDF.sh | 1 +
36 files changed, 996 insertions(+), 94 deletions(-)
create mode 100644
iotdb-core/consensus/src/test/java/org/apache/iotdb/consensus/iot/AddPeerSnapshotLoadFailureTest.java