This is an automated email from the ASF dual-hosted git repository.
jiangtian pushed a change to branch fix_insert_long_min_max
in repository https://gitbox.apache.org/repos/asf/iotdb.git
from bffdbf235ba fix insert/load with Long.MIN/MAX
add 55b37e0d14a Pipe: Fix infinite loop when thread is interrupted in
invoking PipeMemoryBlock#close & Avoid throwing new InterruptedException in
conditions that can be self-restoring (#14471)
add 72c803fa981 Table model insertion auto-cast & Fix TVList not removed
when all data are deleted. (#14391)
add 2076bf6b86c Fix setting illegal default_storage_group_level does not
report an error (#14477)
new 160b6aa19c2 Merge branch 'master' into fix_insert_long_min_max
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:
.../it/env/cluster/config/MppCommonConfig.java | 6 +
.../env/cluster/config/MppSharedCommonConfig.java | 7 +
.../org/apache/iotdb/itbase/env/CommonConfig.java | 4 +
.../iotdb/db/it/IoTDBSetConfigurationIT.java | 52 +++
.../db/it/query/IoTDBEncryptionValueQueryIT.java | 2 +-
.../it/session}/IoTDBSessionRelationalIT.java | 372 ++++++++++++++++++++-
.../java/org/apache/iotdb/db/conf/IoTDBConfig.java | 14 +-
.../org/apache/iotdb/db/conf/IoTDBDescriptor.java | 20 +-
.../exception/sql/StatementAnalyzeException.java | 4 +
.../common/tsfile/PipeTsFileInsertionEvent.java | 17 +-
.../protocol/thrift/IoTDBDataNodeReceiver.java | 3 +
.../resource/memory/InsertNodeMemoryEstimator.java | 3 +
.../db/pipe/resource/memory/PipeMemoryBlock.java | 14 +-
.../analyze/cache/partition/PartitionCache.java | 2 +-
.../queryengine/plan/execution/QueryExecution.java | 4 +-
.../db/queryengine/plan/planner/IPlanner.java | 4 +-
.../queryengine/plan/planner/TreeModelPlanner.java | 5 +-
.../plan/relational/planner/TableModelPlanner.java | 5 +-
.../relational/sql/ast/WrappedInsertStatement.java | 20 +-
.../plan/statement/crud/InsertBaseStatement.java | 2 +-
.../plan/statement/crud/InsertRowStatement.java | 4 +-
.../plan/statement/crud/InsertTabletStatement.java | 5 +-
.../schemaengine/schemaregion/utils/MetaUtils.java | 9 +-
.../dataregion/memtable/AbstractMemTable.java | 4 +-
.../memtable/AlignedWritableMemChunk.java | 6 +-
.../memtable/AlignedWritableMemChunkGroup.java | 5 +
.../memtable/IWritableMemChunkGroup.java | 2 +
.../dataregion/memtable/WritableMemChunkGroup.java | 5 +
.../response/SubscriptionEventTsFileResponse.java | 2 +-
.../org/apache/iotdb/db/utils/CommonUtils.java | 86 -----
.../db/utils/datastructure/AlignedTVList.java | 26 +-
.../apache/iotdb/db/metadata/MetaUtilsTest.java | 9 +-
.../plan/statement/InsertStatementTest.java | 2 +-
.../conf/iotdb-system.properties.template | 7 +-
34 files changed, 590 insertions(+), 142 deletions(-)
rename integration-test/src/test/java/org/apache/iotdb/{session/it =>
relational/it/session}/IoTDBSessionRelationalIT.java (74%)