This is an automated email from the ASF dual-hosted git repository.
jiangtian pushed a change to branch force_ci/support_schema_evolution
in repository https://gitbox.apache.org/repos/asf/iotdb.git
from a2a84720fc3 May rename multiple columns in one sql
add c257be65a19 fix (#17140)
add 45d9471befc Fix sort branch release logic of SORT operator #17148
add a93cde24d7c fix the bug that insert null into the time column #17150
add 220ee167be4 Fix occasional CI failures of IoTDBMQTTServiceJsonIT.
(#17146)
add 13513ea12f2 Load: Support same measurement name and type with
different encoding and compression (#17152)
add 52d7245a2b8 Pipe: Banned the illegal names in pipe and pipe plugins
(#17145)
add 1fbef53d801 Pipe: allow exclusion-only pattern lists (#17154)
add 4c821492d29 Fixed the bug that the template may create measurements
under timeSeries && Optimized the logger for meta user exceptions (#17158)
add c1f4682c207 Fixed the NPE when validating legacy sink (#17153)
add 22c6c6c112a Remove netty from service-rpc (#17157)
add 4bf7c3e4a19 Fix set sql_dialect=table will clear current database bug
(#17159)
add d2f0d48e9f0 Merge branch 'master' into
force_ci/support_schema_evolution
No new revisions were added by this update.
Summary of changes:
.../org/apache/iotdb/db/it/IoTDBLoadTsFileIT.java | 53 ++
.../iotdb/db/it/mqtt/IoTDBMQTTServiceJsonIT.java | 132 ++++-
.../iotdb/db/it/schema/IoTDBSchemaTemplateIT.java | 17 +
.../org/apache/iotdb/db/it/utils/TestUtils.java | 41 +-
.../treemodel/auto/basic/IoTDBPipeDataSinkIT.java | 34 +-
.../treemodel/auto/basic/IoTDBPipeSyntaxIT.java | 64 +++
.../auto/basic/IoTDBTreePatternFormatIT.java | 56 ++
.../relational/it/db/it/IoTDBInsertTableIT.java | 36 ++
.../it/query/recent/IoTDBFillTableIT.java | 20 +
.../iotdb/relational/it/schema/IoTDBTableIT.java | 5 +-
iotdb-client/service-rpc/pom.xml | 16 -
.../iotdb/rpc/NettyTNonblockingTransport.java | 624 ---------------------
.../iotdb/rpc/TNonblockingTransportWrapper.java | 8 +-
.../confignode/manager/ClusterQuotaManager.java | 5 +-
.../confignode/persistence/quota/QuotaInfo.java | 4 +-
.../legacy/IoTDBLegacyPipeReceiverAgent.java | 5 +-
.../sink/protocol/legacy/IoTDBLegacyPipeSink.java | 11 +-
.../iotdb/db/protocol/session/IClientSession.java | 3 +
.../operator/process/AbstractSortOperator.java | 4 +-
.../load/TreeSchemaAutoCreatorAndVerifier.java | 32 +-
.../config/executor/ClusterConfigTaskExecutor.java | 34 +-
.../plan/planner/LogicalPlanBuilder.java | 8 +-
.../plan/planner/LogicalPlanVisitor.java | 6 +-
.../metadata/read/SeriesSchemaFetchScanNode.java | 4 +-
.../plan/relational/sql/parser/AstBuilder.java | 2 +
.../mtree/impl/mem/MTreeBelowSGMemoryImpl.java | 29 +-
.../mtree/impl/pbtree/MTreeBelowSGCachedImpl.java | 59 +-
.../apache/iotdb/db/utils/ErrorHandlingUtils.java | 2 +
.../iotdb/db/utils/sort/FileSpillerReader.java | 5 +
.../apache/iotdb/db/utils/sort/MemoryReader.java | 5 +
.../org/apache/iotdb/db/utils/sort/SortReader.java | 3 +
.../operator/SortOperatorSortBranchTest.java | 207 +++++++
.../pipe/datastructure/pattern/TreePattern.java | 12 +-
.../org/apache/iotdb/commons/utils/FileUtils.java | 12 +
34 files changed, 780 insertions(+), 778 deletions(-)
delete mode 100644
iotdb-client/service-rpc/src/main/java/org/apache/iotdb/rpc/NettyTNonblockingTransport.java
create mode 100644
iotdb-core/datanode/src/test/java/org/apache/iotdb/db/queryengine/execution/operator/SortOperatorSortBranchTest.java