This is an automated email from the ASF dual-hosted git repository.
haonan pushed a change to branch add_base32_path
in repository https://gitbox.apache.org/repos/asf/iotdb.git
from 1616d2ab19c fix UT errors
add 33aeaee64b8 reduce bytes copy
add 52101673132 implement unchangeable config
add 431369a684e Add IT
add 2bdba56dcb9 Added name check to avoid directory attack (#16720)
add 6e88e732e75 Merge branch 'force_ci/object_type' of
github.com:apache/iotdb into add_base32_path
add 8d14cadd5b7 add config
No new revisions were added by this update.
Summary of changes:
.../it/env/cluster/config/MppCommonConfig.java | 6 +
.../env/cluster/config/MppSharedCommonConfig.java | 7 +
.../iotdb/it/env/cluster/node/DataNodeWrapper.java | 4 +
.../it/env/remote/config/RemoteCommonConfig.java | 5 +
.../org/apache/iotdb/itbase/env/CommonConfig.java | 2 +
.../iotdb/relational/it/schema/IoTDBTableIT.java | 133 ++++++++
.../relational/it/session/IoTDBObjectInsertIT.java | 333 +++++++++++++++++++++
.../it/session/IoTDBObjectInsertIT2.java | 172 +++++++++++
.../it/session/IoTDBSessionRelationalIT.java | 181 -----------
.../iotdb/confignode/conf/ConfigNodeConfig.java | 10 +
.../confignode/conf/ConfigNodeDescriptor.java | 5 +
.../confignode/conf/SystemPropertiesUtils.java | 12 +
.../iotdb/confignode/manager/node/NodeManager.java | 1 +
.../manager/schema/ClusterSchemaManager.java | 13 +-
.../org/apache/iotdb/db/conf/IoTDBDescriptor.java | 1 +
.../execution/config/TableConfigTaskVisitor.java | 10 +
.../plan/node/write/RelationalInsertRowsNode.java | 2 +-
.../node/write/RelationalInsertTabletNode.java | 6 +-
.../fetcher/TableDeviceSchemaValidator.java | 23 +-
.../plan/relational/sql/ast/InsertRow.java | 11 +-
.../plan/relational/sql/ast/InsertRows.java | 14 +-
.../plan/relational/sql/ast/InsertTablet.java | 9 +
.../schemaregion/impl/SchemaRegionPBTreeImpl.java | 2 +-
.../storageengine/dataregion/Base32ObjectPath.java | 5 +
.../db/storageengine/dataregion/IObjectPath.java | 2 +
.../storageengine/dataregion/PlainObjectPath.java | 9 +-
.../conf/iotdb-system.properties.template | 5 +
.../apache/iotdb/commons/schema/table/TsTable.java | 31 ++
.../src/main/thrift/confignode.thrift | 1 +
29 files changed, 816 insertions(+), 199 deletions(-)
create mode 100644
integration-test/src/test/java/org/apache/iotdb/relational/it/session/IoTDBObjectInsertIT.java
create mode 100644
integration-test/src/test/java/org/apache/iotdb/relational/it/session/IoTDBObjectInsertIT2.java