diff --git a/.gitmodules b/.gitmodules
index 8179b9caa5701f7a94ed6c1dbda3ad75db1b866e..161d481f89f3a45afc9a0ead1763d5cbd2429f47 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -7,9 +7,6 @@
[submodule "deps/jemalloc"]
path = deps/jemalloc
url = https://github.com/jemalloc/jemalloc.git
-[submodule "src/kit/taos-tools"]
- path = src/kit/taos-tools
- url = https://github.com/taosdata/taos-tools.git
[submodule "src/plugins/taosadapter"]
path = src/plugins/taosadapter
url = https://github.com/taosdata/taosadapter.git
diff --git a/Jenkinsfile2 b/Jenkinsfile2
index 257a13e4bf490a4f859804dcb564e3f26854e33f..6549f714a1cb13877b751a8e948e24691fbf45f0 100644
--- a/Jenkinsfile2
+++ b/Jenkinsfile2
@@ -134,7 +134,7 @@ def sync_source() {
git submodule update --init --recursive
'''
}
-def pre_test() {
+def pre_test_arm64() {
sync_source()
sh '''
cd ${WK}
@@ -144,7 +144,14 @@ def pre_test() {
go env -w GO111MODULE=on
cmake .. -DBUILD_HTTP=false -DBUILD_TOOLS=true > /dev/null
make -j8 >/dev/null
- make install
+ '''
+ return 1
+}
+def pre_test() {
+ sync_source()
+ sh '''
+ cd ${WKC}/tests/parallel_test
+ ./container_build.sh -w ${WKDIR} -t 8 >/dev/null
'''
return 1
}
@@ -312,6 +319,7 @@ pipeline {
agent none
options { skipDefaultCheckout() }
environment{
+ WKDIR = '/var/data/jenkins/workspace'
WK = '/var/data/jenkins/workspace/TDinternal'
WKC = '/var/data/jenkins/workspace/TDinternal/community'
LOGDIR = '/var/data/jenkins/workspace/log'
@@ -330,7 +338,7 @@ pipeline {
agent {label " worker07_arm64 || worker09_arm64 "}
steps {
timeout(time: 20, unit: 'MINUTES') {
- pre_test()
+ pre_test_arm64()
script {
sh '''
echo "arm64 build done"
diff --git a/docs/en/07-develop/03-insert-data/05-high-volume.md b/docs/en/07-develop/03-insert-data/05-high-volume.md
index fc4f071997caeecfda6e314bd7f60278d8cf672c..1a4813f74e680905206b5bdd8fe37cd4eca2b0be 100644
--- a/docs/en/07-develop/03-insert-data/05-high-volume.md
+++ b/docs/en/07-develop/03-insert-data/05-high-volume.md
@@ -51,7 +51,7 @@ TDengine is a distributed and high performance time series database, there are a
1. Set proper number of `vgroups` according to available CPU cores. Normally, we recommend 2 \* number_of_cores as a starting point. If the verification result shows this is not enough to utilize CPU resources, you can use a higher value.
2. Set proper `minTablesPerVnode`, `tableIncStepPerVnode`, and `maxVgroupsPerDb` according to the number of tables so that tables are distributed even across vgroups. The purpose is to balance the workload among all vnodes so that system resources can be utilized better to get higher performance.
-For more performance tuning tips, please refer to [Performance Optimization](../../operation/optimize) and [Configuration Parameters](../../reference/config).
+For more performance tuning tips, please refer to [Performance Optimization](../../../operation/optimize) and [Configuration Parameters](../../../reference/config).
## Sample Programs
diff --git a/docs/en/07-develop/07-subscribe.mdx b/docs/en/07-develop/07-subscribe.mdx
index 782fcdbaf221419dd231bd10958e26b8f4f856e5..0fde36f6cff912c82ab58e641f0f38021ea1676a 100644
--- a/docs/en/07-develop/07-subscribe.mdx
+++ b/docs/en/07-develop/07-subscribe.mdx
@@ -218,9 +218,6 @@ Query OK, 5 row(s) in set (0.004896s)
{/*
*/}
-
-
-
{/*
diff --git a/docs/en/12-taos-sql/index.md b/docs/en/12-taos-sql/index.md
index 33656338a7bba38dc55cf536bdba8e95309c5acf..1d1cb04ad4005372bb9d3a41c1c98533071ac4b2 100644
--- a/docs/en/12-taos-sql/index.md
+++ b/docs/en/12-taos-sql/index.md
@@ -5,7 +5,7 @@ description: "The syntax supported by TDengine SQL "
This section explains the syntax of SQL to perform operations on databases, tables and STables, insert data, select data and use functions. We also provide some tips that can be used in TDengine SQL. If you have previous experience with SQL this section will be fairly easy to understand. If you do not have previous experience with SQL, you'll come to appreciate the simplicity and power of SQL.
-TDengine SQL is the major interface for users to write data into or query from TDengine. For ease of use, the syntax is similar to that of standard SQL. However, please note that TDengine SQL is not standard SQL. For instance, TDengine doesn't provide a delete function for time series data and so corresponding statements are not provided in TDengine SQL.
+TDengine SQL is the major interface for users to write data into or query from TDengine. For ease of use, the syntax is similar to that of standard SQL. However, please note that TDengine SQL is not standard SQL. For instance, TDengine doesn't provide a delete function for time series data and so corresponding statements are not provided in TDengine SQL. However, TDengine Enterprise Edition provides the DELETE function since version 2.6.
Syntax Specifications used in this chapter:
diff --git a/docs/en/14-reference/03-connector/python.mdx b/docs/en/14-reference/03-connector/python.mdx
index 04eb2e57d4455a83b62633ecb988cb64bf837fea..c992d4fcf6803f914aa778b22d8c8c18d22d4bfb 100644
--- a/docs/en/14-reference/03-connector/python.mdx
+++ b/docs/en/14-reference/03-connector/python.mdx
@@ -110,6 +110,7 @@ If you have multiple versions of Python on your system, you may have various `pi
C:\> pip3 install taospy
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Requirement already satisfied: taospy in c:\users\username\appdata\local\programs\python\python310\lib\site-packages (2.3.0)
+```
:::
@@ -255,7 +256,7 @@ The TaosCursor class uses native connections for write and query operations. In
##### Use of TaosRestCursor class
-The ``TaosRestCursor`` class is an implementation of the PEP249 Cursor interface.
+The `TaosRestCursor` class is an implementation of the PEP249 Cursor interface.
```python title="Use of TaosRestCursor"
{{#include docs/examples/python/connect_rest_examples.py:basic}}
@@ -293,6 +294,20 @@ For a more detailed description of the `sql()` method, please refer to [RestClie
{{#include docs/examples/python/conn_rest_pandas.py}}
```
+
+
+
+```python
+{{#include docs/examples/python/conn_native_sqlalchemy.py}}
+```
+
+
+
+
+```python
+{{#include docs/examples/python/conn_rest_sqlalchemy.py}}
+```
+
diff --git a/docs/en/14-reference/13-schemaless/13-schemaless.md b/docs/en/14-reference/13-schemaless/13-schemaless.md
index acbbb1cd3c5a7c50e226644f2de9e0e77274c6dd..dea14aa90a24f16dad5069a29497661333c2d00a 100644
--- a/docs/en/14-reference/13-schemaless/13-schemaless.md
+++ b/docs/en/14-reference/13-schemaless/13-schemaless.md
@@ -37,12 +37,12 @@ In the schemaless writing data line protocol, each data item in the field_set ne
| **Serial number** | **Postfix** | **Mapping type** | **Size (bytes)** |
| -------- | -------- | ------------ | -------------- |
-| 1 | none or f64 | double | 8 |
-| 2 | f32 | float | 4 |
-| 3 | i8 | TinyInt | 1 |
-| 4 | i16 | SmallInt | 2 |
-| 5 | i32 | Int | 4 |
-| 6 | i64 or i | Bigint | 8 |
+| 1 | none or f64 | double | 8 |
+| 2 | f32 | float | 4 |
+| 3 | i8/u8 | TinyInt/UTinyInt | 1 |
+| 4 | i16/u16 | SmallInt/USmallInt | 2 |
+| 5 | i32/u32 | Int/UInt | 4 |
+| 6 | i64/i/u64/u | BigInt/BigInt/UBigInt/UBigInt | 8 |
- `t`, `T`, `true`, `True`, `TRUE`, `f`, `F`, `false`, and `False` will be handled directly as BOOL types.
@@ -67,13 +67,13 @@ Schemaless writes process row data according to the following principles.
Note that tag_key1, tag_key2 are not the original order of the tags entered by the user but the result of using the tag names in ascending order of the strings. Therefore, tag_key1 is not the first tag entered in the line protocol.
The string's MD5 hash value "md5_val" is calculated after the ranking is completed. The calculation result is then combined with the string to generate the table name: "t_md5_val". "t*" is a fixed prefix that every table generated by this mapping relationship has.
-2. If the super table obtained by parsing the line protocol does not exist, this super table is created.
+2. If the super table obtained by parsing the line protocol does not exist, this super table is created(It is not recommended to create a super table manually, otherwise the inserted data may be abnormal).
If the subtable obtained by the parse line protocol does not exist, Schemaless creates the sub-table according to the subtable name determined in steps 1 or 2.
4. If the specified tag or regular column in the data row does not exist, the corresponding tag or regular column is added to the super table (only incremental).
5. If there are some tag columns or regular columns in the super table that are not specified to take values in a data row, then the values of these columns are set to NULL.
6. For BINARY or NCHAR columns, if the length of the value provided in a data row exceeds the column type limit, the maximum length of characters allowed to be stored in the column is automatically increased (only incremented and not decremented) to ensure complete preservation of the data.
-7. If the specified data subtable already exists, and the specified tag column takes a value different from the saved value this time, the value in the latest data row overwrites the old tag column take value.
-8. Errors encountered throughout the processing will interrupt the writing process and return an error code.
+7. Errors encountered throughout the processing will interrupt the writing process and return an error code.
+8. In order to improve the efficiency of writing, the order of fields in the same super table should be the same. If the order is different, you need to configure the parameter smlDataFormat to false, otherwise, the data in the library will be abnormal.
:::tip
All processing logic of schemaless will still follow TDengine's underlying restrictions on data structures, such as the total length of each row of data cannot exceed 48k bytes. See [TAOS SQL Boundary Limits](/taos-sql/limit) for specific constraints in this area.
diff --git a/docs/examples/python/conn_native_pandas.py b/docs/examples/python/conn_native_pandas.py
index 56942ef57085766cd128b03cabb7a357587eab16..8b5555cf6d328b37dbc92ba561222122917fe7e8 100644
--- a/docs/examples/python/conn_native_pandas.py
+++ b/docs/examples/python/conn_native_pandas.py
@@ -1,8 +1,8 @@
+import taos
import pandas
-from sqlalchemy import create_engine
-engine = create_engine("taos://root:taosdata@localhost:6030/power")
-df = pandas.read_sql("SELECT * FROM meters", engine)
+conn = taos.connect()
+df: pandas.DataFrame = pandas.read_sql("SELECT * FROM meters", conn)
# print index
print(df.index)
diff --git a/docs/examples/python/conn_native_sqlalchemy.py b/docs/examples/python/conn_native_sqlalchemy.py
new file mode 100644
index 0000000000000000000000000000000000000000..40c68bda557920182b9e91767487cac0adefd095
--- /dev/null
+++ b/docs/examples/python/conn_native_sqlalchemy.py
@@ -0,0 +1,19 @@
+import pandas
+from sqlalchemy import create_engine
+
+engine = create_engine("taos://root:taosdata@localhost:6030/power")
+df: pandas.DataFrame = pandas.read_sql("SELECT * FROM power.meters", engine)
+
+# print index
+print(df.index)
+# print data type of element in ts column
+print(type(df.ts[0]))
+print(df.head(3))
+
+# output:
+# RangeIndex(start=0, stop=8, step=1)
+#
+# ts current ... location groupid
+# 0 2018-10-03 14:38:05.500 11.8 ... california.losangeles 2
+# 1 2018-10-03 14:38:16.600 13.4 ... california.losangeles 2
+# 2 2018-10-03 14:38:05.000 10.8 ... california.losangeles 3
diff --git a/docs/examples/python/conn_rest_pandas.py b/docs/examples/python/conn_rest_pandas.py
index 0164080cd5a05e72dce40b1d111ea423623ff9b2..356f01c5c580db72cb160ec1d57ca329cb161ad5 100644
--- a/docs/examples/python/conn_rest_pandas.py
+++ b/docs/examples/python/conn_rest_pandas.py
@@ -1,8 +1,8 @@
+import taosrest
import pandas
-from sqlalchemy import create_engine
-engine = create_engine("taosrest://root:taosdata@localhost:6041")
-df: pandas.DataFrame = pandas.read_sql("SELECT * FROM power.meters", engine)
+conn = taosrest.connect()
+df: pandas.DataFrame = pandas.read_sql("SELECT * FROM power.meters", conn)
# print index
print(df.index)
diff --git a/docs/examples/python/conn_rest_sqlalchemy.py b/docs/examples/python/conn_rest_sqlalchemy.py
new file mode 100644
index 0000000000000000000000000000000000000000..0164080cd5a05e72dce40b1d111ea423623ff9b2
--- /dev/null
+++ b/docs/examples/python/conn_rest_sqlalchemy.py
@@ -0,0 +1,19 @@
+import pandas
+from sqlalchemy import create_engine
+
+engine = create_engine("taosrest://root:taosdata@localhost:6041")
+df: pandas.DataFrame = pandas.read_sql("SELECT * FROM power.meters", engine)
+
+# print index
+print(df.index)
+# print data type of element in ts column
+print(type(df.ts[0]))
+print(df.head(3))
+
+# output:
+# RangeIndex(start=0, stop=8, step=1)
+#
+# ts current ... location groupid
+# 0 2018-10-03 06:38:05.500000+00:00 11.8 ... california.losangeles 2
+# 1 2018-10-03 06:38:16.600000+00:00 13.4 ... california.losangeles 2
+# 2 2018-10-03 06:38:05+00:00 10.8 ... california.losangeles 3
diff --git a/docs/zh/07-develop/03-insert-data/05-high-volume.md b/docs/zh/07-develop/03-insert-data/05-high-volume.md
index 6c60fd6e24c590bce90f28b8a0cc7f308f99f801..b8647b6ad71b2c40d307061b369dd9565dfdf471 100644
--- a/docs/zh/07-develop/03-insert-data/05-high-volume.md
+++ b/docs/zh/07-develop/03-insert-data/05-high-volume.md
@@ -44,7 +44,7 @@ import TabItem from "@theme/TabItem";
如果总表数比较大(比如大于500万),适当增加 maxVgroupsPerDb 也能显著提高建表的速度。maxVgroupsPerDb 默认值为 0, 自动配置为 CPU 的核数。 如果表的数量巨大,也建议调节 maxTablesPerVnode 参数,以免超过单个 vnode 建表的上限。
-更多调优参数,请参考[性能优化](../../operation/optimize)和[配置参考](../../reference/config)部分。
+更多调优参数,请参考[性能优化](../../../operation/optimize)和[配置参考](../../../reference/config)部分。
## 高效写入示例 {#sample-code}
diff --git a/docs/zh/07-develop/07-subscribe.mdx b/docs/zh/07-develop/07-subscribe.mdx
index 0f531e07c9dce7dbb03bacebf8e5cbefae82671f..962ed72e3075310b38d8705234b1f9eb942e082f 100644
--- a/docs/zh/07-develop/07-subscribe.mdx
+++ b/docs/zh/07-develop/07-subscribe.mdx
@@ -213,9 +213,6 @@ Query OK, 5 row(s) in set (0.004896s)
{/*
*/}
-
-
-
{/*
diff --git a/docs/zh/12-taos-sql/18-escape.md b/docs/zh/12-taos-sql/18-escape.md
index 756e5c81591e7414827fdc65e228cfafc96214ad..1200669c40525682bba6b2c7743f5d1dcaf6c7d5 100644
--- a/docs/zh/12-taos-sql/18-escape.md
+++ b/docs/zh/12-taos-sql/18-escape.md
@@ -27,4 +27,4 @@ title: 转义字符说明
2. 反引号``标识符: 保持原样,不转义
2. 数据里有转义字符
1. 遇到上面定义的转义字符会转义(%和\_见下面说明),如果没有匹配的转义字符会忽略掉转义符\。
- 2. 对于%和\_,因为在 like 里这两个字符是通配符,所以在模式匹配 like 里用`\%`%和`\_`表示字符里本身的%和\_,如果在 like 模式匹配上下文之外使用`\%`或`\_`,则它们的计算结果为字符串`\%`和`\_`,而不是%和\_。
+ 2. 对于%和\_,因为在 like 里这两个字符是通配符,所以在模式匹配 like 里用`\%`和`\_`表示字符里本身的%和\_,如果在 like 模式匹配上下文之外使用`\%`或`\_`,则它们的计算结果为字符串`\%`和`\_`,而不是%和\_。
diff --git a/docs/zh/12-taos-sql/index.md b/docs/zh/12-taos-sql/index.md
index cb01b3a918778abc6c7891c1ff185f1db32d3d36..36cc20bd3b6e4c668e386014f8444baa716f039d 100644
--- a/docs/zh/12-taos-sql/index.md
+++ b/docs/zh/12-taos-sql/index.md
@@ -5,7 +5,7 @@ description: "TAOS SQL 支持的语法规则、主要查询功能、支持的 SQ
本文档说明 TAOS SQL 支持的语法规则、主要查询功能、支持的 SQL 查询函数,以及常用技巧等内容。阅读本文档需要读者具有基本的 SQL 语言的基础。
-TAOS SQL 是用户对 TDengine 进行数据写入和查询的主要工具。TAOS SQL 为了便于用户快速上手,在一定程度上提供与标准 SQL 类似的风格和模式。严格意义上,TAOS SQL 并不是也不试图提供标准的 SQL 语法。此外,由于 TDengine 针对的时序性结构化数据不提供删除功能,因此在 TAO SQL 中不提供数据删除的相关功能。
+TAOS SQL 是用户对 TDengine 进行数据写入和查询的主要工具。TAOS SQL 为了便于用户快速上手,在一定程度上提供与标准 SQL 类似的风格和模式。严格意义上,TAOS SQL 并不是也不试图提供标准的 SQL 语法。此外,由于 TDengine 没有提供时序数据的删除功能,因此 TAOS SQL 中也没有提供数据删除的相关功能。不过从 TDengine 企业版从 2.6 开始提供了 DELETE 语句。
本章节 SQL 语法遵循如下约定:
diff --git a/docs/zh/14-reference/03-connector/python.mdx b/docs/zh/14-reference/03-connector/python.mdx
index a77dc71db7d07c93084984d2e95e3d4267bca924..ecd84fe9a146d2ecdd3254244ada706c1595280d 100644
--- a/docs/zh/14-reference/03-connector/python.mdx
+++ b/docs/zh/14-reference/03-connector/python.mdx
@@ -295,6 +295,20 @@ TaosCursor 类使用原生连接进行写入、查询操作。在客户端多线
{{#include docs/examples/python/conn_rest_pandas.py}}
```
+
+
+
+```python
+{{#include docs/examples/python/conn_native_sqlalchemy.py}}
+```
+
+
+
+
+```python
+{{#include docs/examples/python/conn_rest_sqlalchemy.py}}
+```
+
diff --git a/docs/zh/14-reference/13-schemaless/13-schemaless.md b/docs/zh/14-reference/13-schemaless/13-schemaless.md
index f2712f2814593bddd65401cb129c8c58ee55a316..ac356d54439823a7f1558bd2ecd3c1f3f6f8bcdb 100644
--- a/docs/zh/14-reference/13-schemaless/13-schemaless.md
+++ b/docs/zh/14-reference/13-schemaless/13-schemaless.md
@@ -41,10 +41,10 @@ tag_set 中的所有的数据自动转化为 nchar 数据类型,并不需要
| -------- | -------- | ------------ | -------------- |
| 1 | 无或 f64 | double | 8 |
| 2 | f32 | float | 4 |
-| 3 | i8 | TinyInt | 1 |
-| 4 | i16 | SmallInt | 2 |
-| 5 | i32 | Int | 4 |
-| 6 | i64 或 i | Bigint | 8 |
+| 3 | i8/u8 | TinyInt/UTinyInt | 1 |
+| 4 | i16/u16 | SmallInt/USmallInt | 2 |
+| 5 | i32/u32 | Int/UInt | 4 |
+| 6 | i64/i/u64/u | BigInt/BigInt/UBigInt/UBigInt | 8 |
- t, T, true, True, TRUE, f, F, false, False 将直接作为 BOOL 型来处理。
@@ -69,16 +69,17 @@ st,t1=3,t2=4,t3=t3 c1=3i64,c3="passit",c2=false,c4=4f64 1626006833639000000
```
需要注意的是,这里的 tag_key1, tag_key2 并不是用户输入的标签的原始顺序,而是使用了标签名称按照字符串升序排列后的结果。所以,tag_key1 并不是在行协议中输入的第一个标签。
-排列完成以后计算该字符串的 MD5 散列值 "md5_val"。然后将计算的结果与字符串组合生成表名:“t_md5_val”。其中的 “t\*” 是固定的前缀,每个通过该映射关系自动生成的表都具有该前缀。
+排列完成以后计算该字符串的 MD5 散列值 "md5_val"。然后将计算的结果与字符串组合生成表名:“t_md5_val”。其中的 “t_” 是固定的前缀,每个通过该映射关系自动生成的表都具有该前缀。
-2. 如果解析行协议获得的超级表不存在,则会创建这个超级表。
+2. 如果解析行协议获得的超级表不存在,则会创建这个超级表(不建议手动创建超级表,不然插入数据可能异常)。
3. 如果解析行协议获得子表不存在,则 Schemaless 会按照步骤 1 或 2 确定的子表名来创建子表。
4. 如果数据行中指定的标签列或普通列不存在,则在超级表中增加对应的标签列或普通列(只增不减)。
5. 如果超级表中存在一些标签列或普通列未在一个数据行中被指定取值,那么这些列的值在这一行中会被置为
NULL。
6. 对 BINARY 或 NCHAR 列,如果数据行中所提供值的长度超出了列类型的限制,自动增加该列允许存储的字符长度上限(只增不减),以保证数据的完整保存。
-7. 如果指定的数据子表已经存在,而且本次指定的标签列取值跟已保存的值不一样,那么最新的数据行中的值会覆盖旧的标签列取值。
-8. 整个处理过程中遇到的错误会中断写入过程,并返回错误代码。
+7. 整个处理过程中遇到的错误会中断写入过程,并返回错误代码。
+8. 为了提高写入的效率,默认假设同一个超级表中field_set的顺序是一样的(第一条数据包含所有的field,后面的数据按照这个顺序),如果顺序不一样,需要配置参数smlDataFormat为false,否则,
+ 数据写入按照相同顺序写入,库中数据会异常。
:::tip
无模式所有的处理逻辑,仍会遵循 TDengine 对数据结构的底层限制,例如每行数据的总长度不能超过
@@ -94,7 +95,7 @@ st,t1=3,t2=4,t3=t3 c1=3i64,c3="passit",c2=false,c4=4f64 1626006833639000000
| -------- | ------------------- | ------------------------------- |
| 1 | SML_LINE_PROTOCOL | InfluxDB 行协议(Line Protocol) |
| 2 | SML_TELNET_PROTOCOL | OpenTSDB 文本行协议 |
-| 3 | SML_JSON_PROTOCOL | JSON 协议格式 |
+| 3 | SML_JSON_PROTOCOL | OpenTSDB JSON 协议格式 |
在 SML_LINE_PROTOCOL 解析模式下,需要用户指定输入的时间戳的时间分辨率。可用的时间分辨率如下表所示:
diff --git a/docs/zh/20-third-party/12-IDEA.mdx b/docs/zh/20-third-party/12-IDEA.mdx
new file mode 100644
index 0000000000000000000000000000000000000000..2dd682f19908e10537044846fe55ab705592fd74
--- /dev/null
+++ b/docs/zh/20-third-party/12-IDEA.mdx
@@ -0,0 +1,84 @@
+---
+sidebar_label: IDEA
+title: 通过 IDEA 数据库管理工具连接 TDengine
+---
+
+IDEA 全称 IntelliJ IDEA,是 Java 语言开发的集成环境,被公认为最友好且使用范围最广的 Java 开发工具之一。
+
+IDEA Ultimate 版自带数据库管理工具,类似于一个小型 Navicat。这个工具让我们能在 IDEA 上对数据库做简单操作,不需要再切换到其他工具上。对于 TDengine 来说,用户可以通过 JDBC 驱动建立与 IDEA 的连接,不需要再到命令行去写 SQL 语句,直接在 IDEA 中执行即可。
+
+此处以 2.0.40 版本的 JDBC Connector 为例,给大家介绍如何使用源码编译、打包,以及如何使用 IDEA 数据库工具连接 TDengine。
+
+## 前置条件
+
+要让 IDEA 能正常连接 TDengine ,需要以下几方面的准备工作。
+
+- TDengine 集群已经部署并正常运行。
+- 若使用 TSDBDriver 驱动类连接请在本地安装 TDengine 客户端。
+- 若使用 RestfulDriver 驱动类连接 TDengine,请确保 taosAdapter 已经正常运行。
+
+## 配置步骤
+
+### 源码编译 JDBC-Connector
+
+去各大仓库下载 [dist-jar 包](https://search.maven.org/artifact/com.taosdata.jdbc/taos-jdbcdriver)或者通过源码编译,此处介绍源码编译方法。
+
+- 首先从 GitHub 仓库克隆 JDBC 连接器的源码,`git clone https://github.com/taosdata/taos-connector-jdbc.git -b 2.0.40`(此处推荐 -b 指定发布了的 Tags 版本),也可以在 IDEA 上操作:
+
+
+
+- 克隆完源码后,若是编译 2.0.40 及以下版本的 JDBC-Connector 需要修改 taos-connector-jdbc 目录下 pom.xml 文件,将 dependencies 下的 commons-logging 依赖包的 scope 值由 test 改为 compile,否则编译完后导入 IDEA database 管理工具可能提醒缺少此驱动类。
+
+
+
+- 在 taos-connector-jdbc 目录下执行:`mvn clean package -Dmaven.test.skip=true`
+
+
+
+
+
+- 此时 taos-connector-jdbc 目录的 target 文件夹内产生了 taos-jdbcdriver-2.0.40-dist.jar 等驱动包。
+
+### 使用 IDEA database 工具连接 TDengine
+
+- 打开 IDEA database 工具,新建驱动,驱动程序文件选择 target 文件夹下的 taos-jdbcdriver-2.0.40-dist.jar。
+
+- 选择 RESTful 方式进行连接(注意:若使用 com.taosdata.jdbc.TSDBDriver 驱动类需要安装 TDengine 客户端)。
+
+
+
+- 然后通过驱动创建数据源。TDengine 的 JDBC URL 规范为:
+`jdbc:[TAOS|TAOS-RS]://[host_name]:[port]/[database_name]?[user={user}|&password={password}|&charset={charset}|&cfgdir={config_dir}|&locale={locale}|&timezone={timezone}]`
+
+- 此处使用 RESTful 连接,URL 示例为:jdbc:TAOS-RS://VM-24-8-centos:6041/log(需要在 Hosts 文件内添加域名解析;URL 内的 locale、timezone 参数在 RESTful 连接中不生效)
+
+
+
+- 点击测试连接,出现黄色感叹号不影响使用。
+
+
+
+
+## 验证
+
+- 配置完后进行验证,点击刷新后再点击显示所有数据库:
+
+
+
+
+- 右击数据源,新建查询控制台测试能否查询。需要注意的是,RESTful 请求是无状态的,查询、写入需要在表名前带上数据库名。
+
+- 2.X 版本中默认带 log 库,我们可以使用 `SHOW log.stables` 查看包含哪些超级表后对特定表进行查询、调试:
+
+
+
+- 可以看到有个超级表叫做 vgroups_info,执行 `DESCRIBE log.vgroups_info` 查看表结构:
+
+
+
+
+- 再执行`SELECT last_row(*) FROM log.vgroups_info GROUP BY vgroup_id`通过 vgroup_id 分组能查看各 VgroupId 下的最新一条数据:
+
+
+
+
diff --git a/docs/zh/20-third-party/13-Google-Data-Studio.mdx b/docs/zh/20-third-party/13-Google-Data-Studio.mdx
new file mode 100644
index 0000000000000000000000000000000000000000..0d1ec84aa3d1b93b2fb9a0eec9ae0b6cefc51e4d
--- /dev/null
+++ b/docs/zh/20-third-party/13-Google-Data-Studio.mdx
@@ -0,0 +1,44 @@
+---
+sidebar_label: Google Data Studio 连接器
+title: 如何通过 Google Data Studio 可视化处理 TDengine 数据
+---
+
+Google Data Studio 是一个强大的报表可视化工具,它提供了丰富的数据图表和数据连接,可以非常方便地按照既定模板生成报表。因其简便易用和生态丰富而在数据分析领域得到一众数据科学家的青睐。
+
+Data Studio 可以支持多种数据来源,除了诸如 Google Analytics、Google AdWords、Search Console、BigQuery 等 Google 自己的服务之外,用户也可以直接将离线文件上传至 Google Cloud Storage,或是通过连接器来接入其它数据源。
+
+目前 TDengine 连接器已经发布到 Google Data Studio 应用商店,你可以在 “Connect to Data” 页面下直接搜索 TDengine,将其选作数据源。
+
+
+
+接下来选择 AUTHORIZE 按钮。
+
+
+
+设置允许连接自己的账号到外部服务。
+
+
+
+在接下来的页面选择运行 TDengine REST 服务的 URL,并输入用户名、密码、数据库名称、表名称以及查询时间范围,并点击右上角的 CONNECT 按钮。
+
+注意:查询时间范围为可选输入项,如果不设置查询开始时间和结束时间,那么返回的数据为截至当前时间前30天的数据。如果30天内没有数据,生成的报告的会没数据。
+
+
+
+连接成功后,就可以使用 GDS 方便地进行数据处理并创建报表了。
+
+
+
+目前的维度和指标规则是:timestamp 类型的字段和 tag 字段会被连接器定义为维度,而其他类型的字段是指标。用户还可以根据自己的需求创建不同的表。
+
+以下为使用 GDS 对 TDengine 提供数据进行可视化图表设计的过程示例。
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/zh/20-third-party/gds/GDS-10-1-1024x531.png b/docs/zh/20-third-party/gds/GDS-10-1-1024x531.png
new file mode 100644
index 0000000000000000000000000000000000000000..121ca63b18b0f6a7af58d823482d95b648e171b9
Binary files /dev/null and b/docs/zh/20-third-party/gds/GDS-10-1-1024x531.png differ
diff --git a/docs/zh/20-third-party/gds/GDS-11-1024x531.png b/docs/zh/20-third-party/gds/GDS-11-1024x531.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf61951be65bd2461301725b07d2b20eae9576df
Binary files /dev/null and b/docs/zh/20-third-party/gds/GDS-11-1024x531.png differ
diff --git a/docs/zh/20-third-party/gds/GDS-2-2.png b/docs/zh/20-third-party/gds/GDS-2-2.png
new file mode 100644
index 0000000000000000000000000000000000000000..81b305ca7a262472adb9995c0c4864add32aa1b2
Binary files /dev/null and b/docs/zh/20-third-party/gds/GDS-2-2.png differ
diff --git a/docs/zh/20-third-party/gds/GDS-3-2.png b/docs/zh/20-third-party/gds/GDS-3-2.png
new file mode 100644
index 0000000000000000000000000000000000000000..333cc7d8b549a43f27129b5895b96ee0bfb285ca
Binary files /dev/null and b/docs/zh/20-third-party/gds/GDS-3-2.png differ
diff --git a/docs/zh/20-third-party/gds/GDS-4-1.png b/docs/zh/20-third-party/gds/GDS-4-1.png
new file mode 100644
index 0000000000000000000000000000000000000000..18a52caf274c0c582670731966bc04387d960b05
Binary files /dev/null and b/docs/zh/20-third-party/gds/GDS-4-1.png differ
diff --git a/docs/zh/20-third-party/gds/GDS-5-1024x426.png b/docs/zh/20-third-party/gds/GDS-5-1024x426.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8bbd461b0e34c779547262ad8547ab42a0773c7
Binary files /dev/null and b/docs/zh/20-third-party/gds/GDS-5-1024x426.png differ
diff --git a/docs/zh/20-third-party/gds/GDS-6-1024x368.png b/docs/zh/20-third-party/gds/GDS-6-1024x368.png
new file mode 100644
index 0000000000000000000000000000000000000000..af9afd8c33d6874de2086d77b9e67c17aeefbe32
Binary files /dev/null and b/docs/zh/20-third-party/gds/GDS-6-1024x368.png differ
diff --git a/docs/zh/20-third-party/gds/GDS-7-1024x528.png b/docs/zh/20-third-party/gds/GDS-7-1024x528.png
new file mode 100644
index 0000000000000000000000000000000000000000..34e0dab351e684b049c4ed291d9e253b86c3c222
Binary files /dev/null and b/docs/zh/20-third-party/gds/GDS-7-1024x528.png differ
diff --git a/docs/zh/20-third-party/gds/GDS-8-1024x531.png b/docs/zh/20-third-party/gds/GDS-8-1024x531.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c6d627bdcde0ea12d07bf0fe9f672241686d416
Binary files /dev/null and b/docs/zh/20-third-party/gds/GDS-8-1024x531.png differ
diff --git a/docs/zh/20-third-party/gds/GDS-9-1024x531.png b/docs/zh/20-third-party/gds/GDS-9-1024x531.png
new file mode 100644
index 0000000000000000000000000000000000000000..b3262778479bda8a645536d4eefcc4a3528d3edb
Binary files /dev/null and b/docs/zh/20-third-party/gds/GDS-9-1024x531.png differ
diff --git a/src/client/inc/tsclient.h b/src/client/inc/tsclient.h
index 5a36256538a3e2b9325300bbce39e9d31f685515..a3db44c3826e823f38a4c1a5533a713bf58bc927 100644
--- a/src/client/inc/tsclient.h
+++ b/src/client/inc/tsclient.h
@@ -387,6 +387,7 @@ typedef struct SSqlObj {
SSqlRes res;
SSubqueryState subState;
+ pthread_mutex_t mtxSubs; // avoid double access pSubs after failure
struct SSqlObj **pSubs;
struct SSqlObj *rootObj;
diff --git a/src/client/src/tscAsync.c b/src/client/src/tscAsync.c
index 759a301f2ab1a617789388f9192be7f7a196d605..b0900513e999a1d9f5be182f5aa242794307541e 100644
--- a/src/client/src/tscAsync.c
+++ b/src/client/src/tscAsync.c
@@ -46,6 +46,8 @@ void doAsyncQuery(STscObj* pObj, SSqlObj* pSql, __async_cb_func_t fp, void* para
pSql->fetchFp = fp;
pSql->rootObj = pSql;
+ pthread_mutex_init(&pSql->mtxSubs, NULL);
+
registerSqlObj(pSql);
pSql->sqlstr = calloc(1, sqlLen + 1);
@@ -317,7 +319,7 @@ static void tscAsyncResultCallback(SSchedMsg *pMsg) {
return ;
}
- if (tsShortcutFlag) {
+ if (tsShortcutFlag && (pSql->res.code == TSDB_CODE_RPC_SHORTCUT)) {
tscDebug("0x%" PRIx64 " async result callback, code:%s", pSql->self, tstrerror(pSql->res.code));
pSql->res.code = TSDB_CODE_SUCCESS;
} else {
diff --git a/src/client/src/tscParseLineProtocol.c b/src/client/src/tscParseLineProtocol.c
index 8a1eb88e933ab2376f014088fcf47fc495bbebef..81056f2f774fe413415a9b251fb81131964478a2 100644
--- a/src/client/src/tscParseLineProtocol.c
+++ b/src/client/src/tscParseLineProtocol.c
@@ -2058,6 +2058,7 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
const char *start, *cur;
int32_t ret = TSDB_CODE_SUCCESS;
char *value = NULL;
+ int32_t bufSize = TSDB_FUNC_BUF_SIZE;
int16_t len = 0;
bool kv_done = false;
@@ -2077,6 +2078,11 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
val_rqoute
} val_state;
+ value = malloc(bufSize);
+ if (value == NULL) {
+ ret = TSDB_CODE_TSC_OUT_OF_MEMORY;
+ goto error;
+ }
start = cur = *idx;
tag_state = tag_common;
val_state = val_common;
@@ -2095,7 +2101,6 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
back_slash = false;
cur++;
- len++;
break;
}
@@ -2104,7 +2109,6 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
tag_state = tag_lqoute;
}
cur += 1;
- len += 1;
break;
} else if (*cur == 'L') {
line_len = strlen(*idx);
@@ -2122,7 +2126,6 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
tag_state = tag_lqoute;
}
cur += 2;
- len += 2;
break;
}
}
@@ -2131,8 +2134,7 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
case '\\':
back_slash = true;
cur++;
- len++;
- break;
+ continue;
case ',':
kv_done = true;
break;
@@ -2146,7 +2148,6 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
default:
cur++;
- len++;
}
break;
@@ -2160,7 +2161,6 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
back_slash = false;
cur++;
- len++;
break;
} else if (double_quote == true) {
if (*cur != ' ' && *cur != ',' && *cur != '\0') {
@@ -2182,13 +2182,11 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
case '\\':
back_slash = true;
cur++;
- len++;
- break;
+ continue;
case '"':
double_quote = true;
cur++;
- len++;
break;
case '\0':
@@ -2199,7 +2197,6 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
default:
cur++;
- len++;
}
break;
@@ -2217,9 +2214,8 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
goto error;
}
- back_slash = false;
- cur++;
- len++;
+ back_slash = false;
+ cur++;
break;
}
@@ -2235,7 +2231,6 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
}
cur += 1;
- len += 1;
break;
} else if (*cur == 'L') {
line_len = strlen(*idx);
@@ -2252,12 +2247,10 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
if (cur + 1 == *idx + 1) {
val_state = val_lqoute;
cur += 2;
- len += 2;
} else {
/* MUST at the end of string */
if (cur + 2 >= *idx + line_len) {
cur += 2;
- len += 2;
*is_last_kv = true;
kv_done = true;
} else {
@@ -2271,7 +2264,6 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
}
cur += 2;
- len += 2;
kv_done = true;
}
}
@@ -2284,8 +2276,7 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
case '\\':
back_slash = true;
cur++;
- len++;
- break;
+ continue;
case ',':
kv_done = true;
@@ -2300,7 +2291,6 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
default:
cur++;
- len++;
}
break;
@@ -2311,10 +2301,11 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
ret = TSDB_CODE_TSC_LINE_SYNTAX_ERROR;
goto error;
}
-
+ if (*cur == '"') {
+ start++;
+ }
back_slash = false;
cur++;
- len++;
break;
} else if (double_quote == true) {
if (*cur != ' ' && *cur != ',' && *cur != '\0') {
@@ -2336,13 +2327,11 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
case '\\':
back_slash = true;
cur++;
- len++;
- break;
+ continue;
case '"':
double_quote = true;
cur++;
- len++;
break;
case '\0':
@@ -2353,7 +2342,6 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
default:
cur++;
- len++;
}
break;
@@ -2362,24 +2350,35 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
}
}
+ if (start < cur) {
+ if (bufSize <= len + (cur - start)) {
+ bufSize *= 2;
+ char *tmp = realloc(value, bufSize);
+ if (tmp == NULL) {
+ ret = TSDB_CODE_TSC_OUT_OF_MEMORY;
+ goto error;
+ }
+ value = tmp;
+ }
+ memcpy(value + len, start, cur - start); // [start, cur)
+ len += cur - start;
+ start = cur;
+ }
+
if (kv_done == true) {
break;
}
}
if (len == 0 || ret != TSDB_CODE_SUCCESS) {
- free(pKV->key);
- pKV->key = NULL;
- return TSDB_CODE_TSC_LINE_SYNTAX_ERROR;
+ ret = TSDB_CODE_TSC_LINE_SYNTAX_ERROR;
+ goto error;
}
- value = calloc(len + 1, 1);
- memcpy(value, start, len);
value[len] = '\0';
if (!convertSmlValueType(pKV, value, len, info, isTag)) {
tscError("SML:0x%"PRIx64" Failed to convert sml value string(%s) to any type",
info->id, value);
- free(value);
ret = TSDB_CODE_TSC_INVALID_VALUE;
goto error;
}
@@ -2389,7 +2388,8 @@ static int32_t parseSmlValue(TAOS_SML_KV *pKV, const char **idx,
return ret;
error:
- //free previous alocated key field
+ //free previous alocated buffer and key field
+ free(value);
free(pKV->key);
pKV->key = NULL;
return ret;
diff --git a/src/client/src/tscServer.c b/src/client/src/tscServer.c
index d3fe338c910432174dafb76b1d1647c2cb4888b2..e709df581a33293c7a8a6c49e9fec7d09fb2d0f1 100644
--- a/src/client/src/tscServer.c
+++ b/src/client/src/tscServer.c
@@ -444,7 +444,7 @@ int tscSendMsgToServer(SSqlObj *pSql) {
if ((rpcMsg.msgType == TSDB_MSG_TYPE_SUBMIT) && (tsShortcutFlag & TSDB_SHORTCUT_RB_RPC_SEND_SUBMIT)) {
rpcFreeCont(rpcMsg.pCont);
- return TSDB_CODE_FAILED;
+ return TSDB_CODE_RPC_SHORTCUT;
}
@@ -3376,7 +3376,9 @@ int tscRenewTableMeta(SSqlObj *pSql) {
pSql->rootObj->retryReason = pSql->retryReason;
SSqlObj *rootSql = pSql->rootObj;
+ pthread_mutex_lock(&rootSql->mtxSubs);
tscFreeSubobj(rootSql);
+ pthread_mutex_unlock(&rootSql->mtxSubs);
tfree(rootSql->pSubs);
tscResetSqlCmd(&rootSql->cmd, true, rootSql->self);
diff --git a/src/client/src/tscUtil.c b/src/client/src/tscUtil.c
index c431a731c0dd23db8eaf34ded0715d90fb709819..116f7deb1cd05691ded5b62272f37c1996425465 100644
--- a/src/client/src/tscUtil.c
+++ b/src/client/src/tscUtil.c
@@ -1760,6 +1760,10 @@ void tscFreeSqlObj(SSqlObj* pSql) {
tscFreeSubobj(pSql);
+ if (pSql && (pSql == pSql->rootObj)) {
+ pthread_mutex_destroy(&pSql->mtxSubs);
+ }
+
pSql->signature = NULL;
pSql->fp = NULL;
tfree(pSql->sqlstr);
diff --git a/src/inc/taoserror.h b/src/inc/taoserror.h
index 0ffb7f89dc105f843b8cbdf9383d4d96ab3392dd..9f51952d28abb4dc5b589126b6a6358af604de8b 100644
--- a/src/inc/taoserror.h
+++ b/src/inc/taoserror.h
@@ -60,7 +60,7 @@ int32_t* taosGetErrno();
#define TSDB_CODE_APP_NOT_READY TAOS_DEF_ERROR_CODE(0, 0x0014) //"Database not ready"
#define TSDB_CODE_RPC_FQDN_ERROR TAOS_DEF_ERROR_CODE(0, 0x0015) //"Unable to resolve FQDN"
#define TSDB_CODE_RPC_INVALID_VERSION TAOS_DEF_ERROR_CODE(0, 0x0016) //"Invalid app version"
-#define TSDB_CODE_RPC_CONN_BROKEN TAOS_DEF_ERROR_CODE(0, 0x0017) //"connection is broken"
+#define TSDB_CODE_RPC_SHORTCUT TAOS_DEF_ERROR_CODE(0, 0x0017) //"Shortcut"
//common & util
#define TSDB_CODE_COM_OPS_NOT_SUPPORT TAOS_DEF_ERROR_CODE(0, 0x0100) //"Operation not supported"
diff --git a/src/kit/taos-tools b/src/kit/taos-tools
deleted file mode 160000
index f84cb6e51556d8030585128c2b252aa2a6453328..0000000000000000000000000000000000000000
--- a/src/kit/taos-tools
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit f84cb6e51556d8030585128c2b252aa2a6453328
diff --git a/src/plugins/CMakeLists.txt b/src/plugins/CMakeLists.txt
index 6733b604fa11a11f769b936fd511d3865145dbe1..52d27593a1a3b52b0056c05e4a3ff4c218b6bbf6 100644
--- a/src/plugins/CMakeLists.txt
+++ b/src/plugins/CMakeLists.txt
@@ -63,7 +63,7 @@ ELSE ()
COMMAND CGO_CFLAGS=-I${CMAKE_CURRENT_SOURCE_DIR}/../inc CGO_LDFLAGS=-L${CMAKE_BINARY_DIR}/build/lib go build -a -ldflags "-s -w -X github.com/taosdata/taosadapter/version.Version=${taos_version} -X github.com/taosdata/taosadapter/version.CommitID=${taosadapter_commit_sha1}"
COMMAND CGO_CFLAGS=-I${CMAKE_CURRENT_SOURCE_DIR}/../inc CGO_LDFLAGS=-L${CMAKE_BINARY_DIR}/build/lib go build -a -o taosadapter-debug -ldflags "-X github.com/taosdata/taosadapter/version.Version=${taos_version} -X github.com/taosdata/taosadapter/version.CommitID=${taosadapter_commit_sha1}"
INSTALL_COMMAND
- COMMAND wget -c https://github.com/upx/upx/releases/download/v3.96/upx-3.96-${PLATFORM_ARCH_STR}_linux.tar.xz -O ${CMAKE_CURRENT_SOURCE_DIR}/upx.tar.xz && tar -xvJf ${CMAKE_CURRENT_SOURCE_DIR}/upx.tar.xz -C ${CMAKE_CURRENT_SOURCE_DIR} --strip-components 1 > /dev/null && ${CMAKE_CURRENT_SOURCE_DIR}/upx taosadapter || :
+ COMMAND wget -c https://github.com/upx/upx/releases/download/v3.96/upx-3.96-${PLATFORM_ARCH_STR}_linux.tar.xz -O $ENV{HOME}/upx.tar.xz && tar -xvJf $ENV{HOME}/upx.tar.xz -C $ENV{HOME} --strip-components 1 > /dev/null && $ENV{HOME}/upx taosadapter || :
COMMAND cmake -E copy taosadapter ${CMAKE_BINARY_DIR}/build/bin
COMMAND cmake -E make_directory ${CMAKE_BINARY_DIR}/test/cfg/
COMMAND cmake -E copy ./example/config/taosadapter.toml ${CMAKE_BINARY_DIR}/test/cfg/
diff --git a/src/query/src/qExecutor.c b/src/query/src/qExecutor.c
index d12cf8d03fa20d6a518e9fcae263a4f6052f8177..28d3d6072782b06299190c4d2174f173b0269f51 100644
--- a/src/query/src/qExecutor.c
+++ b/src/query/src/qExecutor.c
@@ -2814,6 +2814,7 @@ static bool notContainSessionOrStateWindow(SQueryAttr *pQueryAttr) { return !(pQ
static int32_t updateBlockLoadStatus(SQueryAttr *pQuery, int32_t status) {
bool hasFirstLastFunc = false;
bool hasOtherFunc = false;
+ bool hasCount = false;
if (status == BLK_DATA_ALL_NEEDED || status == BLK_DATA_DISCARD) {
return status;
@@ -2829,6 +2830,8 @@ static int32_t updateBlockLoadStatus(SQueryAttr *pQuery, int32_t status) {
if (functionId == TSDB_FUNC_FIRST_DST || functionId == TSDB_FUNC_LAST_DST) {
hasFirstLastFunc = true;
+ } else if(functionId == TSDB_FUNC_COUNT) {
+ hasCount = true;
} else {
hasOtherFunc = true;
}
@@ -2836,7 +2839,7 @@ static int32_t updateBlockLoadStatus(SQueryAttr *pQuery, int32_t status) {
if (hasFirstLastFunc && status == BLK_DATA_NO_NEEDED) {
if(!hasOtherFunc) {
- return BLK_DATA_DISCARD;
+ return hasCount ? BLK_DATA_NO_NEEDED : BLK_DATA_DISCARD;
} else {
return BLK_DATA_ALL_NEEDED;
}
diff --git a/src/rpc/src/rpcMain.c b/src/rpc/src/rpcMain.c
index fe4f3284ac34148dcc71c3c6c15b2522501851a0..9360e7afd940054c1d1fd3f64143c80c012eeb8d 100644
--- a/src/rpc/src/rpcMain.c
+++ b/src/rpc/src/rpcMain.c
@@ -1873,4 +1873,4 @@ bool rpcSaveSendInfo(int64_t rpcRid, void** ppContext) {
taosReleaseRef(tsRpcRefId, rpcRid);
return true;
-}
+}
\ No newline at end of file
diff --git a/src/util/src/terror.c b/src/util/src/terror.c
index b617b7e7013d626ea7011be2612e44cb977acdda..640e842de340b686fcd1bd9bd10ad0850c9d02a1 100644
--- a/src/util/src/terror.c
+++ b/src/util/src/terror.c
@@ -68,8 +68,7 @@ TAOS_DEFINE_ERROR(TSDB_CODE_RPC_INVALID_TIME_STAMP, "Client and server's t
TAOS_DEFINE_ERROR(TSDB_CODE_APP_NOT_READY, "Database not ready")
TAOS_DEFINE_ERROR(TSDB_CODE_RPC_FQDN_ERROR, "Unable to resolve FQDN")
TAOS_DEFINE_ERROR(TSDB_CODE_RPC_INVALID_VERSION, "Invalid app version")
-TAOS_DEFINE_ERROR(TSDB_CODE_RPC_CONN_BROKEN, "Connection broken")
-
+TAOS_DEFINE_ERROR(TSDB_CODE_RPC_SHORTCUT, "Shortcut")
//common & util
TAOS_DEFINE_ERROR(TSDB_CODE_COM_OPS_NOT_SUPPORT, "Operation not supported")
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/custom_col_tag.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/custom_col_tag.json
index 8f652b9d73f5d9f4cb72e2d146a8c66b49dd3533..6558212816f8ad936b1fc74f0159955c7de96895 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/custom_col_tag.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/custom_col_tag.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
@@ -88,4 +87,4 @@
}]
}]
}]
-}
\ No newline at end of file
+}
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/rest_auto_create_table.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/rest_auto_create_table.json
index a4706bf47dab35992e7b82a46f6ceff332f9da2d..cebabf95b6e72b5d7f970906b18374c5b3749d5e 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/rest_auto_create_table.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/rest_auto_create_table.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
@@ -84,4 +83,4 @@
"tags": [{"type": "TIMESTAMP"},{"type": "INT"}, {"type": "BIGINT"}, {"type": "FLOAT"}, {"type": "DOUBLE"}, {"type": "SMALLINT"}, {"type": "TINYINT"}, {"type": "BOOL"}, {"type": "NCHAR","len": 17, "count":1}, {"type": "UINT"}, {"type": "UBIGINT"}, {"type": "UTINYINT"}, {"type": "USMALLINT"}, {"type": "BINARY", "len": 19, "count":1}]
}]
}]
-}
\ No newline at end of file
+}
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/rest_insert_alltypes.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/rest_insert_alltypes.json
index 01e3950502ff363a42ab2837d0fd24938e54c743..0a10458283e047c98c2dfcddb4469c9c748fe5eb 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/rest_insert_alltypes.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/rest_insert_alltypes.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_auto_create_table.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_auto_create_table.json
index 62846bf2b67015cb4f7a4c6b69dd3df2149cbcad..5cbd67e1543d207a57a7572217b9aebc59827d88 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_auto_create_table.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_auto_create_table.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
@@ -84,4 +83,4 @@
"tags": [{"type": "INT"}, {"type": "BIGINT"}, {"type": "FLOAT"}, {"type": "DOUBLE"}, {"type": "SMALLINT"}, {"type": "TINYINT"}, {"type": "BOOL"}, {"type": "NCHAR","len": 17, "count":1}, {"type": "UINT"}, {"type": "UBIGINT"}, {"type": "UTINYINT"}, {"type": "USMALLINT"}, {"type": "BINARY", "len": 19, "count":1}]
}]
}]
-}
\ No newline at end of file
+}
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_insert_alltypes.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_insert_alltypes.json
index 8722d124d69bf630266e85456623f49ed9fed2ac..0cf152604107f536c9cad4cfb2ac420bd725e917 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_insert_alltypes.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_insert_alltypes.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_interlace.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_interlace.json
index 1aa5b093486e682afe251c331884d9a0bf2f8a79..a0eec1c9afcc00a5525b5409589c2465cff3742f 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_interlace.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_interlace.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_json_alltypes.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_json_alltypes.json
index 8806b52a1e63ea209196f194c62378d63982dc18..4e7f6472f69f32ca2e163255a90f4b168f41bc38 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_json_alltypes.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_json_alltypes.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_rest_json.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_rest_json.json
index 1e9e28d4e847cd351c1ce9fee3699e14b3eb77f3..2737f6e631564e3f00f66aee7dd7614859ff0481 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_rest_json.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_rest_json.json
@@ -27,7 +27,6 @@
"minRows": 100,
"maxRows": 4096,
"comp": 2,
- "walLevel": 1,
"cachelast": 0,
"quorum": 1,
"fsync": 3000,
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_rest_line.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_rest_line.json
index deef77fdefa994487607ddc1edb3bf3a5cd83d32..f19f3734ef603ce2d7c6e0ccf200985ac4b46a2c 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_rest_line.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_rest_line.json
@@ -27,7 +27,6 @@
"minRows": 100,
"maxRows": 4096,
"comp": 2,
- "walLevel": 1,
"cachelast": 0,
"quorum": 1,
"fsync": 3000,
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_rest_telnet.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_rest_telnet.json
index 8893a73467bf36a1687cc25a0815a232a1ae86e9..f083782c07adbdffcdcc3c383c62dc27e53e2d0e 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_rest_telnet.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_rest_telnet.json
@@ -27,7 +27,6 @@
"minRows": 100,
"maxRows": 4096,
"comp": 2,
- "walLevel": 1,
"cachelast": 0,
"quorum": 1,
"fsync": 3000,
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_telnet_alltypes.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_telnet_alltypes.json
index 0bf363e6734cdffdede500965f7c7fdc51f3c4a3..9c590ae83c0fdd974598dc474adc6df828726ccd 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_telnet_alltypes.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_telnet_alltypes.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_telnet_tcp.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_telnet_tcp.json
index 84419760c1f29bc5b69ce54ed0a55557703c5384..60af5dfe546c83453a1fed2c933be272e3ab586d 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_telnet_tcp.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/sml_telnet_tcp.json
@@ -27,7 +27,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/stmt_auto_create_table.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/stmt_auto_create_table.json
index 2e5965c14b6c6882bb90a2e8248d5f6605817085..5d74e960e2207bd6ab2b0b1b4b1ebf073c1971ad 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/stmt_auto_create_table.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/stmt_auto_create_table.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
@@ -84,4 +83,4 @@
"tags": [{"type": "TIMESTAMP"},{"type": "INT"}, {"type": "BIGINT"}, {"type": "FLOAT"}, {"type": "DOUBLE"}, {"type": "SMALLINT"}, {"type": "TINYINT"}, {"type": "BOOL"}, {"type": "NCHAR","len": 17, "count":1}, {"type": "UINT"}, {"type": "UBIGINT"}, {"type": "UTINYINT"}, {"type": "USMALLINT"}, {"type": "BINARY", "len": 19, "count":1}]
}]
}]
-}
\ No newline at end of file
+}
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/stmt_insert_alltypes.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/stmt_insert_alltypes.json
index 48f4e231669b150e5823e2dceafd429cd6af8b3c..f7266ee71f4062ab435b6b02a8ac323bf1db7af9 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/stmt_insert_alltypes.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/stmt_insert_alltypes.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_auto_create_table.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_auto_create_table.json
index 06c5be47bf7ca2effd70a0a8ee51915e57cf1fe8..ba7660658f632d8fd7d2f973567ce7b75ad8a5c9 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_auto_create_table.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_auto_create_table.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_insert_alltypes.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_insert_alltypes.json
index 1bb03b4fab5640fb98289384466b84307ea8ceb0..62685eb3c7105d31f541b8d2d788bb7b335b96aa 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_insert_alltypes.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_insert_alltypes.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_json_tag.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_json_tag.json
index 893b203aa85c49ea7bd069fa3a5b30e8c7ea6bc6..ef0b1d27840c1e315e1457abe0d9a30f04187b74 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_json_tag.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_json_tag.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_limit_offset.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_limit_offset.json
index b0e903347d5df00a229391144e77ee57b743b3f0..546885db7d2283be34b7dc65d2f461924023e9b7 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_limit_offset.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_limit_offset.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_only_create_table.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_only_create_table.json
index 4d42ed63fa81660a8ca84d40089f1d35c0afa54a..5869410c03a12dabb5631d3b480e365c9a32656d 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_only_create_table.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_only_create_table.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":1,
"quorum":1,
"fsync":3000,
@@ -59,4 +58,4 @@
"tags": [{"type": "TIMESTAMP"},{"type": "INT"}, {"type": "BIGINT"}, {"type": "FLOAT"}, {"type": "DOUBLE"}, {"type": "SMALLINT"}, {"type": "TINYINT"}, {"type": "BOOL"}, {"type": "NCHAR"}, {"type": "UINT"}, {"type": "UBIGINT"}, {"type": "UTINYINT"}, {"type": "USMALLINT"}, {"type": "BINARY"}]
}]
}]
-}
\ No newline at end of file
+}
diff --git a/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_sample_use_ts.json b/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_sample_use_ts.json
index 22bd13d5be32a9c35b6abed6fc632da3432a2a57..d9eb17ea1f52b5d911b630871b17d42fe0b64b14 100644
--- a/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_sample_use_ts.json
+++ b/tests/develop-test/5-taos-tools/taosbenchmark/json/taosc_sample_use_ts.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/cluster/TD-3693/insert1Data.json b/tests/pytest/cluster/TD-3693/insert1Data.json
index 3ac289a63a846c7de117ce6171ad023ca3f56211..43aa789e48ad7e7075ba5d9ca5b44dd8b7ae7f43 100644
--- a/tests/pytest/cluster/TD-3693/insert1Data.json
+++ b/tests/pytest/cluster/TD-3693/insert1Data.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/cluster/TD-3693/insert2Data.json b/tests/pytest/cluster/TD-3693/insert2Data.json
index 25717df4c76f59e8ef7d638c8793a391ff338a7c..e2c31717986bec0b1c16d889b4c9e355329648cd 100644
--- a/tests/pytest/cluster/TD-3693/insert2Data.json
+++ b/tests/pytest/cluster/TD-3693/insert2Data.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/compress/insertDataDb1.json b/tests/pytest/compress/insertDataDb1.json
index 65cec71a65ff4ef3814bee4949def151c32945ee..67006c4d1faaebace73b1fa63abed1c902afaa33 100644
--- a/tests/pytest/compress/insertDataDb1.json
+++ b/tests/pytest/compress/insertDataDb1.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/insert/line_insert.py b/tests/pytest/insert/line_insert.py
index 4c873ec4a4efa6d1877a83d5b3942f5eb990a714..79c318c3448a0a77b02143ac5689952d9e498d3c 100644
--- a/tests/pytest/insert/line_insert.py
+++ b/tests/pytest/insert/line_insert.py
@@ -196,12 +196,19 @@ class TDTestCase:
self._conn.schemaless_insert([
"sts,t1=abc,t2=ab\"c,t3=ab\\,c,t4=ab\\=c,t5=ab\\ c c1=3i64,c3=L\"passitagin\",c2=true,c4=5f64,c5=5f64,c6=\"abc\" 1626006833640000000",
- "sts,t1=abc c1=3i64,c2=false,c3=L\"{\\\"date\\\":\\\"2020-01-01 08:00:00.000\\\",\\\"temperature\\\":20}\",c6=\"ab\\\\c\" 1626006833640000000"
+ "sts,t1=abc c1=3i64,c2=false,c3=L\"{\\\"date\\\":\\\"2020-01-01 08:00:00.000\\\",\\\"temperature\\\":20}\",c6=\"ab\\\\c\" 1626006833640000000",
+ "type_json5,__deviceId__=10 index=0,jsonAttri$j=\"{\\\"jsonC\\\":\\\"0\\\"}\" 1626006833640000001"
], TDSmlProtocolType.LINE.value, TDSmlTimestampType.NANO_SECOND.value)
tdSql.query('select tbname from sts')
tdSql.checkRows(2)
+ tdSql.query("select * from sts")
+ tdSql.checkData(1, 2, '''{"date":"2020-01-01 08:00:00.000","temperature":20}''')
+
+ tdSql.query("select * from type_json5")
+ tdSql.checkData(0, 2, '''{"jsonC":"0"}''')
+
def stop(self):
tdSql.close()
tdLog.success("%s successfully executed" % __file__)
diff --git a/tests/pytest/manualTest/TD-5114/insertDataDb3Replica2.json b/tests/pytest/manualTest/TD-5114/insertDataDb3Replica2.json
index 4f32b700d8d042134e9edc374abf57e7cf5674b5..14cc9848610d517c2db1417d81526aefe051b49a 100644
--- a/tests/pytest/manualTest/TD-5114/insertDataDb3Replica2.json
+++ b/tests/pytest/manualTest/TD-5114/insertDataDb3Replica2.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/perfbenchmark/bug3433.py b/tests/pytest/perfbenchmark/bug3433.py
index 2f17e0bd3ada7ece5f8544033192758fd4747b52..dbf7b9ad9e05d77c7f910992a226e34652749e5b 100644
--- a/tests/pytest/perfbenchmark/bug3433.py
+++ b/tests/pytest/perfbenchmark/bug3433.py
@@ -74,7 +74,6 @@ class TDTestCase:
"minRows": 100,
"maxRows": 4096,
"comp": 2,
- "walLevel": 1,
"cachelast": 0,
"quorum": 1,
"fsync": 3000,
diff --git a/tests/pytest/query/nestedQuery/insertData.json b/tests/pytest/query/nestedQuery/insertData.json
index 149a4b56acb69ec9a35b1c05a54d6d08803f8080..1518da8c9d9311f26b5fc75ee8d575ed70c63691 100644
--- a/tests/pytest/query/nestedQuery/insertData.json
+++ b/tests/pytest/query/nestedQuery/insertData.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/query/query1970YearsAf.py b/tests/pytest/query/query1970YearsAf.py
index a365369b21fc7429216f5c1e8c624bf856a744c1..62b435fbef9cb132e349e0f8da91eb5c795f3b0b 100644
--- a/tests/pytest/query/query1970YearsAf.py
+++ b/tests/pytest/query/query1970YearsAf.py
@@ -65,7 +65,6 @@ class TDTestCase:
"minRows": 100,
"maxRows": 4096,
"comp": 2,
- "walLevel": 1,
"cachelast": 0,
"quorum": 1,
"fsync": 3000,
diff --git a/tests/pytest/tools/insert-interlace.json b/tests/pytest/tools/insert-interlace.json
index cd72958115aa38280c028c0f0e91443d62f692a4..85cb2dcfce7ff901673c7d388a814349a3659c2b 100644
--- a/tests/pytest/tools/insert-interlace.json
+++ b/tests/pytest/tools/insert-interlace.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/insert-tblimit-tboffset-createdb.json b/tests/pytest/tools/insert-tblimit-tboffset-createdb.json
index 025751bcd3c2d0800d6a02f62adb76d15b8b0131..f5dad7a69db9ce34754796768798b8ffdce3477b 100644
--- a/tests/pytest/tools/insert-tblimit-tboffset-createdb.json
+++ b/tests/pytest/tools/insert-tblimit-tboffset-createdb.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/insert-tblimit-tboffset-insertrec.json b/tests/pytest/tools/insert-tblimit-tboffset-insertrec.json
index 6fa020433a05f8f989638357c9874fe8843dfe34..c013f616b17f45b15e4bba6e9217f86a5bb40bc7 100644
--- a/tests/pytest/tools/insert-tblimit-tboffset-insertrec.json
+++ b/tests/pytest/tools/insert-tblimit-tboffset-insertrec.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/insert-tblimit-tboffset.json b/tests/pytest/tools/insert-tblimit-tboffset.json
index b4d4016ef926d64f85df9a85bfb75352caf2442e..5f8770070ac0af719316c320dd34d91b23d56699 100644
--- a/tests/pytest/tools/insert-tblimit-tboffset.json
+++ b/tests/pytest/tools/insert-tblimit-tboffset.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/insert-tblimit-tboffset0.json b/tests/pytest/tools/insert-tblimit-tboffset0.json
index 8a7e39b17c13387e00167396d21a0c791601e390..cbf5e78dff326970e533b4835b92bceb0b191971 100644
--- a/tests/pytest/tools/insert-tblimit-tboffset0.json
+++ b/tests/pytest/tools/insert-tblimit-tboffset0.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/insert-tblimit1-tboffset.json b/tests/pytest/tools/insert-tblimit1-tboffset.json
index 6e150203b3103eabc546f772ed9aad73ae879207..bef719c5eee3a36faca3edc9f3fd606c4c665ebc 100644
--- a/tests/pytest/tools/insert-tblimit1-tboffset.json
+++ b/tests/pytest/tools/insert-tblimit1-tboffset.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/insert.json b/tests/pytest/tools/insert.json
index 996b91ed06f283fdcd968df9cafc4f58583cbb8d..eacbb590f579385410bff8d46d06f52d496e8fcf 100644
--- a/tests/pytest/tools/insert.json
+++ b/tests/pytest/tools/insert.json
@@ -17,8 +17,7 @@
"cache": 16,
"blocks": 8,
"precision": "ms",
- "update": 0,
- "maxtablesPerVnode": 1000
+ "update": 0
},
"super_tables": [{
"name": "stb01",
diff --git a/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoInsertMSDB.json b/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoInsertMSDB.json
index 8bd5ddbae8d5ce81269626165b2d275d05135ea5..c3ea89a0534a3a87a23801e053be96cde8f1b7df 100644
--- a/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoInsertMSDB.json
+++ b/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoInsertMSDB.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoInsertNanoDB.json b/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoInsertNanoDB.json
index 5408a9841ab8a40e4ca7564724b7f6c7f941e0e0..b6428b482c3958a948d6c8615d26921b45a935d1 100644
--- a/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoInsertNanoDB.json
+++ b/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoInsertNanoDB.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoInsertUSDB.json b/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoInsertUSDB.json
index 13eb80f3cf7f751398babed8e922f9e5b3a4242e..4a648092cc3f4efac5a0d027f7d36d7af2a7d520 100644
--- a/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoInsertUSDB.json
+++ b/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoInsertUSDB.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoTestNanoDatabase.json b/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoTestNanoDatabase.json
index 38ac666fac5097d616c17bdfc7e900256827ddf4..afe156e18c4dad98eea5d81a0a8772e48a735945 100644
--- a/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoTestNanoDatabase.json
+++ b/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoTestNanoDatabase.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoTestNanoDatabaseInsertForSub.json b/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoTestNanoDatabaseInsertForSub.json
index 9ef4a0af66e852a01d8ca7d677de4467ea316097..ac2fbb39b7271360bac17172cb8d2213a3b4a0d8 100644
--- a/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoTestNanoDatabaseInsertForSub.json
+++ b/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoTestNanoDatabaseInsertForSub.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoTestNanoDatabaseNow.json b/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoTestNanoDatabaseNow.json
index a09dec21fa9cf3720b68a1fa2e843b49be0544ee..dede88c2dfe8b7dd1dca29d96b698b6e13202237 100644
--- a/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoTestNanoDatabaseNow.json
+++ b/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoTestNanoDatabaseNow.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoTestNanoDatabasecsv.json b/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoTestNanoDatabasecsv.json
index e99c528c6d62e3b9ce59565e60d21fb562bb836d..cc696518bff385c5281ae29c3ebff5b9e2021a4f 100644
--- a/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoTestNanoDatabasecsv.json
+++ b/tests/pytest/tools/taosdemoAllTest/NanoTestCase/taosdemoTestNanoDatabasecsv.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/TD-4985/query-limit-offset.json b/tests/pytest/tools/taosdemoAllTest/TD-4985/query-limit-offset.json
index ad85f9607b72c5d4562266508bfdcf68837c33bd..1b726ef5da5a7f699b99c0e03238337bfac0c575 100644
--- a/tests/pytest/tools/taosdemoAllTest/TD-4985/query-limit-offset.json
+++ b/tests/pytest/tools/taosdemoAllTest/TD-4985/query-limit-offset.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.json b/tests/pytest/tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.json
index d6e3afdea31955992cc0c9cc8842bc6ae7c6e3f6..9f79c1ae239a74d2f0e6f35c3d1d883169356837 100755
--- a/tests/pytest/tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.json
+++ b/tests/pytest/tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-1s1tnt1r.json b/tests/pytest/tools/taosdemoAllTest/insert-1s1tnt1r.json
index d73719ebe41c5f25fc2cd585bc9974d9e83a946e..f379fe61bf3e799eb5315cf5f41bd5158de29b6b 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-1s1tnt1r.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-1s1tnt1r.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-1s1tntmr.json b/tests/pytest/tools/taosdemoAllTest/insert-1s1tntmr.json
index e10fd1116b948032d5aa67dc0844bbf493d650de..142098865062b0b6489a1aae18b6492f3e4b129b 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-1s1tntmr.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-1s1tntmr.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-allDataType.json b/tests/pytest/tools/taosdemoAllTest/insert-allDataType.json
index a7ada9b84e2bb534eac63364039598d1ddb4c744..1e714c081321c6fc7005d10e49211a4cf10e44b9 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-allDataType.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-allDataType.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-chinese-sml.json b/tests/pytest/tools/taosdemoAllTest/insert-chinese-sml.json
index 49407a76d76edda3c45716134521265114702f11..3633bb64820bc49cedaf3c0964a0384b34e38a32 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-chinese-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-chinese-sml.json
@@ -27,7 +27,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-chinese.json b/tests/pytest/tools/taosdemoAllTest/insert-chinese.json
index ab848b1317049f672775ec0cc6d1f6c3cd78760e..88ace597784901c8865ee539517a39757e722231 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-chinese.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-chinese.json
@@ -27,7 +27,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-disorder.json b/tests/pytest/tools/taosdemoAllTest/insert-disorder.json
index d6420b100e5ad2bae887b3ae5fb5cc0f306d9762..2ae3d6c1ceb91f59ee1d7661b7c5f816d8465496 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-disorder.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-disorder.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-drop-exist-auto-N00.json b/tests/pytest/tools/taosdemoAllTest/insert-drop-exist-auto-N00.json
index 2c3b8c6f81962e02ff5aac37c58fb04b79159a7c..fc2cf160a4ee51ad020bd8aa0bd4a2dc6ee0b95c 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-drop-exist-auto-N00.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-drop-exist-auto-N00.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-drop-exist-auto-Y00.json b/tests/pytest/tools/taosdemoAllTest/insert-drop-exist-auto-Y00.json
index f8fe21a6c4015a27ee663bc7ac54a7889af62add..39e4b3bbc8900f4aa91aaf3472097f363568e2df 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-drop-exist-auto-Y00.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-drop-exist-auto-Y00.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-illegal.json b/tests/pytest/tools/taosdemoAllTest/insert-illegal.json
index c56f8f30402aa948828377b46e5cf8678a3b3472..920eed645608002435d335ece4527cfdcf06d4ae 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-illegal.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-illegal.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-interlace-row.json b/tests/pytest/tools/taosdemoAllTest/insert-interlace-row.json
index 93bb92764d3e4ba141a8b8c9b2df4fda69cb9eaa..a40c17d1f94f2b43de2cee7d2c83a8b0f29156f7 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-interlace-row.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-interlace-row.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-interval-speed.json b/tests/pytest/tools/taosdemoAllTest/insert-interval-speed.json
index d51dee428fc8f1bb61af84d5f570f69cce344651..ae15b41e4fc464e6cd4932c63c3d1df440ff6fd5 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-interval-speed.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-interval-speed.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-newdb.json b/tests/pytest/tools/taosdemoAllTest/insert-newdb.json
index 05a6f7606a22f7c4712ed7c1a4452c43c87f5428..4386b7a7ee9fa21bfcfb115dccb2e72b509e3c80 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-newdb.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-newdb.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-newtable.json b/tests/pytest/tools/taosdemoAllTest/insert-newtable.json
index 02b56bbfe8a5e0900467e0dc0537919465a406a7..a87e257ff94d342b83a39b19c1bffd08be35ffe5 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-newtable.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-newtable.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-nodbnodrop.json b/tests/pytest/tools/taosdemoAllTest/insert-nodbnodrop.json
index 5978e5529f8d3a3b29cb04f1744a045b56e7e5ba..44707e87484d0cd898fc35cbb3b0d561072a59cf 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-nodbnodrop.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-nodbnodrop.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-offset.json b/tests/pytest/tools/taosdemoAllTest/insert-offset.json
index 53edf41072a93b907da8af6648dab03691e039a8..351a2b38d59fa2569d60a2fc48c3c2cf81ce6c68 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-offset.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-offset.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-renewdb.json b/tests/pytest/tools/taosdemoAllTest/insert-renewdb.json
index 91c033c67711e0713f65a08a48351288470d565e..de023d15a2b9654df5999940ed04a46e4eeabd27 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-renewdb.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-renewdb.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-sample-ts.json b/tests/pytest/tools/taosdemoAllTest/insert-sample-ts.json
index b14c3a8ec6d329e187c84b87412570e220eddb73..d63549b79b7c40a8c847d25f6de45a8618eb4da4 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-sample-ts.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-sample-ts.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-sample.json b/tests/pytest/tools/taosdemoAllTest/insert-sample.json
index 87d442b7cbc981c8f3a86104c9d13856283f1815..d41433ff0c3dd7756d8c41aa556158b5167d9e77 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-sample.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-sample.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert-timestep.json b/tests/pytest/tools/taosdemoAllTest/insert-timestep.json
index c794c73c843607a7ef6bb84b288ac890a317bfa9..059643a851faefa30c0345aac52e0779de2a7fa6 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert-timestep.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert-timestep.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insertBinaryLenLarge16374AllcolLar49151-error.json b/tests/pytest/tools/taosdemoAllTest/insertBinaryLenLarge16374AllcolLar49151-error.json
index be55d31d5595b210695584f6dbbc334bb7b7f8e6..7f16fa74ec383df86360ebe3fbb2f956f81e8d90 100644
--- a/tests/pytest/tools/taosdemoAllTest/insertBinaryLenLarge16374AllcolLar49151-error.json
+++ b/tests/pytest/tools/taosdemoAllTest/insertBinaryLenLarge16374AllcolLar49151-error.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insertBinaryLenLarge16374AllcolLar49151.json b/tests/pytest/tools/taosdemoAllTest/insertBinaryLenLarge16374AllcolLar49151.json
index 67abdc67eed813501e012c8b7dce5d0719d22eb6..ffcd49e32e1774b70d7430f3b75ef4347c4eea94 100644
--- a/tests/pytest/tools/taosdemoAllTest/insertBinaryLenLarge16374AllcolLar49151.json
+++ b/tests/pytest/tools/taosdemoAllTest/insertBinaryLenLarge16374AllcolLar49151.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insertChildTab0.json b/tests/pytest/tools/taosdemoAllTest/insertChildTab0.json
index 84aa75eca7ac5eaabfeef715471e9b91ee66dfec..99f89eb7dc82b14e0f4fe3d8543326ad22a19ff9 100644
--- a/tests/pytest/tools/taosdemoAllTest/insertChildTab0.json
+++ b/tests/pytest/tools/taosdemoAllTest/insertChildTab0.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insertChildTabLess0.json b/tests/pytest/tools/taosdemoAllTest/insertChildTabLess0.json
index 58acd9bbd022bb55ef573f9a7e9434ed935b55bc..68fa2acf634140643014a028f8377372a78598f1 100644
--- a/tests/pytest/tools/taosdemoAllTest/insertChildTabLess0.json
+++ b/tests/pytest/tools/taosdemoAllTest/insertChildTabLess0.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insertColumnsAndTagNum4096.json b/tests/pytest/tools/taosdemoAllTest/insertColumnsAndTagNum4096.json
index 17153c2f2c00a2e296ebf59409be1287cb203c24..4cd6e3ceb57b5a0e9907b878af0d28f5b04fc062 100644
--- a/tests/pytest/tools/taosdemoAllTest/insertColumnsAndTagNum4096.json
+++ b/tests/pytest/tools/taosdemoAllTest/insertColumnsAndTagNum4096.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insertColumnsAndTagNumLarge4096.json b/tests/pytest/tools/taosdemoAllTest/insertColumnsAndTagNumLarge4096.json
index 59cbedca72709fe10203926881160629658ae3bc..04d32a3e79a6e0daed9d6c6a6e1dea77bad00784 100644
--- a/tests/pytest/tools/taosdemoAllTest/insertColumnsAndTagNumLarge4096.json
+++ b/tests/pytest/tools/taosdemoAllTest/insertColumnsAndTagNumLarge4096.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insertColumnsNum0.json b/tests/pytest/tools/taosdemoAllTest/insertColumnsNum0.json
index 52d6ae029de4a2c019545ac047526638237d701e..867152a6030712d8385449f5def8723a57f23f0d 100644
--- a/tests/pytest/tools/taosdemoAllTest/insertColumnsNum0.json
+++ b/tests/pytest/tools/taosdemoAllTest/insertColumnsNum0.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insertInterlaceRowsLarge1M.json b/tests/pytest/tools/taosdemoAllTest/insertInterlaceRowsLarge1M.json
index 60a10d2501bb2644784ea24afe2319679c441a34..0f4952074db6a8e31224b55a307aa04bdb23d187 100644
--- a/tests/pytest/tools/taosdemoAllTest/insertInterlaceRowsLarge1M.json
+++ b/tests/pytest/tools/taosdemoAllTest/insertInterlaceRowsLarge1M.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insertMaxNumPerReq.json b/tests/pytest/tools/taosdemoAllTest/insertMaxNumPerReq.json
index 1166ac36438babefbe0d0de70d5a5e3f088f055f..686a2cc4f108d4439ac26a7f7cdeeee291e7314b 100644
--- a/tests/pytest/tools/taosdemoAllTest/insertMaxNumPerReq.json
+++ b/tests/pytest/tools/taosdemoAllTest/insertMaxNumPerReq.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insertNumOfrecordPerReq0.json b/tests/pytest/tools/taosdemoAllTest/insertNumOfrecordPerReq0.json
index 8247c5f0158e5cce4d3891dc88048e4a29a3d888..def5043d4fbe56c8606126b8a997caa0ca193e3f 100644
--- a/tests/pytest/tools/taosdemoAllTest/insertNumOfrecordPerReq0.json
+++ b/tests/pytest/tools/taosdemoAllTest/insertNumOfrecordPerReq0.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insertNumOfrecordPerReqless0.json b/tests/pytest/tools/taosdemoAllTest/insertNumOfrecordPerReqless0.json
index 138ebbadf63d16816e723462693684cfd2e4c2c0..f1f4b7f3c66bc5072beac1aac18c9d69c3df72f4 100644
--- a/tests/pytest/tools/taosdemoAllTest/insertNumOfrecordPerReqless0.json
+++ b/tests/pytest/tools/taosdemoAllTest/insertNumOfrecordPerReqless0.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insertRestful.json b/tests/pytest/tools/taosdemoAllTest/insertRestful.json
index 682dcf2ce4393815590552e935578df26bb8f43c..cb90c1f89898878b668d052e3eee71aa0c8d01a9 100644
--- a/tests/pytest/tools/taosdemoAllTest/insertRestful.json
+++ b/tests/pytest/tools/taosdemoAllTest/insertRestful.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insertSigcolumnsNum4096.json b/tests/pytest/tools/taosdemoAllTest/insertSigcolumnsNum4096.json
index e8468f5906a7ebdef62f6509a8968a0df7bdd775..8b8f959e05b8189e1ae8e0dc038522709f4c9e10 100644
--- a/tests/pytest/tools/taosdemoAllTest/insertSigcolumnsNum4096.json
+++ b/tests/pytest/tools/taosdemoAllTest/insertSigcolumnsNum4096.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insertTagsNumLarge128.json b/tests/pytest/tools/taosdemoAllTest/insertTagsNumLarge128.json
index 4dbe2940e2c7954e6b41a8f645d9e8d809d013d6..4480cf47d3476927eecc59098962caf33de27988 100644
--- a/tests/pytest/tools/taosdemoAllTest/insertTagsNumLarge128.json
+++ b/tests/pytest/tools/taosdemoAllTest/insertTagsNumLarge128.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/insert_5M_rows.json b/tests/pytest/tools/taosdemoAllTest/insert_5M_rows.json
index 65973ccb485585de689f5e44a3bca28b675732b4..ae820815257f4fd3f33130c2829eb0ba9c4e47ae 100644
--- a/tests/pytest/tools/taosdemoAllTest/insert_5M_rows.json
+++ b/tests/pytest/tools/taosdemoAllTest/insert_5M_rows.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/manual_block1_comp.json b/tests/pytest/tools/taosdemoAllTest/manual_block1_comp.json
index a1a28c9ee970c9db1f21ace18dd7b8f54f39e5ed..5c8dc689ae00b536719e33d27732377362cbc128 100644
--- a/tests/pytest/tools/taosdemoAllTest/manual_block1_comp.json
+++ b/tests/pytest/tools/taosdemoAllTest/manual_block1_comp.json
@@ -25,7 +25,6 @@
"minRows": 1000,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/manual_block2.json b/tests/pytest/tools/taosdemoAllTest/manual_block2.json
index 03f6e038fb4072f64569e65e91f86ccd8ce5f86e..c92c18b025e045018512baf2fd879e859324dd93 100644
--- a/tests/pytest/tools/taosdemoAllTest/manual_block2.json
+++ b/tests/pytest/tools/taosdemoAllTest/manual_block2.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/manual_change_time_1_1_A.json b/tests/pytest/tools/taosdemoAllTest/manual_change_time_1_1_A.json
index 7b8abd6d4e25991d38ff16c737bf8169c7311318..0f7786e6822580d842a91c6f9b498c2ab401b07b 100644
--- a/tests/pytest/tools/taosdemoAllTest/manual_change_time_1_1_A.json
+++ b/tests/pytest/tools/taosdemoAllTest/manual_change_time_1_1_A.json
@@ -25,7 +25,6 @@
"minRows": 1000,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/manual_change_time_1_1_B.json b/tests/pytest/tools/taosdemoAllTest/manual_change_time_1_1_B.json
index aeee6322e5c0e6b58c0433be5f345e7c4f84f339..f8decfca417ea2a86ac1065334169841694df68c 100644
--- a/tests/pytest/tools/taosdemoAllTest/manual_change_time_1_1_B.json
+++ b/tests/pytest/tools/taosdemoAllTest/manual_change_time_1_1_B.json
@@ -25,7 +25,6 @@
"minRows": 1000,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/moredemo-offset-limit1.json b/tests/pytest/tools/taosdemoAllTest/moredemo-offset-limit1.json
index e30b7b0b1c6a136aa45c91da165ff8101eeb42e3..f166d461fec3d84f5c2fb4b295272529818ab35a 100644
--- a/tests/pytest/tools/taosdemoAllTest/moredemo-offset-limit1.json
+++ b/tests/pytest/tools/taosdemoAllTest/moredemo-offset-limit1.json
@@ -27,7 +27,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/moredemo-offset-limit5.json b/tests/pytest/tools/taosdemoAllTest/moredemo-offset-limit5.json
index d4ce2fee46d8848f574d75173818bff819c1d31f..ebbbc001f9da6c384f6cdf2eb4905ea6933e6f58 100644
--- a/tests/pytest/tools/taosdemoAllTest/moredemo-offset-limit5.json
+++ b/tests/pytest/tools/taosdemoAllTest/moredemo-offset-limit5.json
@@ -27,7 +27,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/moredemo-offset-limit94.json b/tests/pytest/tools/taosdemoAllTest/moredemo-offset-limit94.json
index ce12accf06c101956ec6a9d025e63bb1814acbd0..a18e1e0e1a36af7ea38eb159471c996c368c981d 100644
--- a/tests/pytest/tools/taosdemoAllTest/moredemo-offset-limit94.json
+++ b/tests/pytest/tools/taosdemoAllTest/moredemo-offset-limit94.json
@@ -27,7 +27,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/moredemo-offset-newdb.json b/tests/pytest/tools/taosdemoAllTest/moredemo-offset-newdb.json
index 9ffb2953d3c46df5a6cbd4e6042748185254e62a..4b246a93d731c47e78d01e280fe777cb5d54e397 100644
--- a/tests/pytest/tools/taosdemoAllTest/moredemo-offset-newdb.json
+++ b/tests/pytest/tools/taosdemoAllTest/moredemo-offset-newdb.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/query-interrupt.json b/tests/pytest/tools/taosdemoAllTest/query-interrupt.json
index 896e484c258ed4f1418f48a74cd643defc9c6731..8857d5adae2b5ea808e1044fd28512b4562d597b 100644
--- a/tests/pytest/tools/taosdemoAllTest/query-interrupt.json
+++ b/tests/pytest/tools/taosdemoAllTest/query-interrupt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/queryInsertdata.json b/tests/pytest/tools/taosdemoAllTest/queryInsertdata.json
index eb196e4096d26f429f013a8936c910e5dc86c304..756316621d958693c16a5ced6e5882305cf88dcc 100644
--- a/tests/pytest/tools/taosdemoAllTest/queryInsertdata.json
+++ b/tests/pytest/tools/taosdemoAllTest/queryInsertdata.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/queryInsertrestdata.json b/tests/pytest/tools/taosdemoAllTest/queryInsertrestdata.json
index 0febbdfa19d2ba8dd4db0b318d05c5af18fd1584..0073f52e2bd4dbad211fcfd30ab4e95e3a215401 100644
--- a/tests/pytest/tools/taosdemoAllTest/queryInsertrestdata.json
+++ b/tests/pytest/tools/taosdemoAllTest/queryInsertrestdata.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-1s1tnt1r-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-1s1tnt1r-sml.json
index 5cd06c02759ddcba93eaa8ef4ef848a9b645cbda..8e96931e523b60a65ce59be79e038472fd4fe929 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-1s1tnt1r-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-1s1tnt1r-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-1s1tntmr-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-1s1tntmr-sml.json
index 0885e01782b41079ccbfb7a30a8b4d3628ba9c20..5042549f09201a71ae9bc907ba2ac162acf4c382 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-1s1tntmr-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-1s1tntmr-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-allDataType-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-allDataType-sml.json
index cbd4f6cb59c1ddd146b42a233c740d6bbaca45d3..0de5ddcc26840162b6e1264266ce4a3de0bd20ab 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-allDataType-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-allDataType-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-disorder-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-disorder-sml.json
index 6f24801cb04f9f515e33898fb587b95029def325..57006fcc3c1a75d7f2064a10b4174f6ecd46a167 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-disorder-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-disorder-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-drop-exist-auto-N00-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-drop-exist-auto-N00-sml.json
index 92e6ec0df7a70329312676298c3b5ffccc2a8767..dcca0f82aef7ed856a61a54ebb28d6ea3c1eccde 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-drop-exist-auto-N00-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-drop-exist-auto-N00-sml.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-drop-exist-auto-Y00-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-drop-exist-auto-Y00-sml.json
index c09493ec7b892baba37a7be4addb0ce526752f07..cdfc5cb26d7a89add24b12fb0731aeaab16d3690 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-drop-exist-auto-Y00-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-drop-exist-auto-Y00-sml.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-interlace-row-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-interlace-row-sml.json
index e04f2ff5e7cb24cb5384b7451712b3fe83bf18c3..caf9a9466b63c0336add8f52f8dd4b83dc87ad3a 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-interlace-row-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-interlace-row-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-interval-speed-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-interval-speed-sml.json
index 4a4227adb8fdcd0cb025a10c5b6f417c921acd96..564f2405e3e008dae7c7dbdf14519860ea5acf25 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-interval-speed-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-interval-speed-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-newdb-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-newdb-sml.json
index 1d29842e02c654987c50e6e73d4aec5eed48aa83..f0a84487d5e3a7fd1a52f655c622d23a8495bf0c 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-newdb-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-newdb-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-newtable-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-newtable-sml.json
index 886503a950ca18b752bfa264218bb8564ce44ae0..ac5ba1dc5ff5b6fb3347cacf1ee276871733d226 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-newtable-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-newtable-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-nodbnodrop-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-nodbnodrop-sml.json
index ca99d135c5f466c911f3063b88fbb3e58c4e4ed4..50af8517bc19a3de655280a6159644cb15df7df5 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-nodbnodrop-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-nodbnodrop-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-offset-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-offset-sml.json
index d0109b50cf449b0e7e1b258ae29723a560b1d2f6..d79ae2b0054e591c6ea40c90ed54072fc36b47a6 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-offset-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-offset-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-renewdb-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-renewdb-sml.json
index f8f3a8ee5cea1834c31ebb275a10977cd960f829..459d47b114e872eb702bbc3fe782562fdc5f4086 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-renewdb-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-renewdb-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-sample-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-sample-sml.json
index 780fd60bb7e98f18a5c33798b6bb35a77e1d85db..35c808bd5880f192b409f909a65badb983df7088 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-sample-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-sample-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-sml-json-alltype.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-sml-json-alltype.json
index 66885ebab89f7221830e66d642ca17b99de0e397..eca27390c6b2c2a93c8e9c7a2222e8785913637e 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-sml-json-alltype.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-sml-json-alltype.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-sml-telnet-alltype.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-sml-telnet-alltype.json
index c9fa0f6fb0ddc777159b5d13f324c65b23cabd0d..6c780edd1537dcd56f56a4d3ee30d70cc4326835 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-sml-telnet-alltype.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-sml-telnet-alltype.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-sml-timestamp.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-sml-timestamp.json
index 4e8ff40cfdb7650f9d82635ac5be42f67904158a..e7704b87fe677abacdf94c71724cf15177a01790 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-sml-timestamp.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-sml-timestamp.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insert-timestep-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insert-timestep-sml.json
index 1d496b6b46bf3df3c4312bacafbfb77125491058..1d0490f539ec5ff80e76bb7966bbe5452d5521df 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insert-timestep-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insert-timestep-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insertBinaryLenLarge16374AllcolLar49151-error-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insertBinaryLenLarge16374AllcolLar49151-error-sml.json
index c70db14b4c9b5fabe590eb8fec4a1f0e4dbc831a..723260c4228be73e21b01a37e50729dec24e4ce9 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insertBinaryLenLarge16374AllcolLar49151-error-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insertBinaryLenLarge16374AllcolLar49151-error-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insertBinaryLenLarge16374AllcolLar49151-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insertBinaryLenLarge16374AllcolLar49151-sml.json
index 12034adc0788f84852019d776fc0987cbc9c4f16..ba3586635b4d000638c72bb6a55d58d2b2fb2d48 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insertBinaryLenLarge16374AllcolLar49151-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insertBinaryLenLarge16374AllcolLar49151-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insertChildTab0-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insertChildTab0-sml.json
index 28f566833fc8958d364ee867c7628d573b4bf8ee..85ff34b99d8eec0be824b4799f3001c56053ea90 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insertChildTab0-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insertChildTab0-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insertChildTabLess0-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insertChildTabLess0-sml.json
index 8f27feba6be7e3018461b0070420cc759cf8fc72..3e37ca197f14d93f83f120fd610e62e0f47e7b2c 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insertChildTabLess0-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insertChildTabLess0-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insertColumnsAndTagNum4096-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insertColumnsAndTagNum4096-sml.json
index 2e4063cf272ba18732f0e456362cb1103ba6d5c4..38477734e231196e65c3e78413033691b1d73ff2 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insertColumnsAndTagNum4096-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insertColumnsAndTagNum4096-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insertColumnsAndTagNumLarge4096-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insertColumnsAndTagNumLarge4096-sml.json
index c6fe0300f535a2b9d798b09853f0ad333e3bbcfd..63ff800812c39f78f9d26717f30ad05802ccc590 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insertColumnsAndTagNumLarge4096-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insertColumnsAndTagNumLarge4096-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insertColumnsNum0-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insertColumnsNum0-sml.json
index 92e88141ca09971d0d202ee488471c14e07d4cd3..0804acbae0db9c22972ab4107d8d2ddd0f1ed130 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insertColumnsNum0-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insertColumnsNum0-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insertInterlaceRowsLarge1M-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insertInterlaceRowsLarge1M-sml.json
index 18f1a39e0afcdae3d52e4bc4a4a97e15dbcfda37..73845c2dc5042926e7e60ae8ea501ee326bc84f2 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insertInterlaceRowsLarge1M-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insertInterlaceRowsLarge1M-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insertMaxNumPerReq-sml-telnet.json b/tests/pytest/tools/taosdemoAllTest/sml/insertMaxNumPerReq-sml-telnet.json
index 01ec546012ad04f94cfb6224048fffd89d5cbbc8..b3a113ad38447ce0df6c6e685edc046ff5bea86f 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insertMaxNumPerReq-sml-telnet.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insertMaxNumPerReq-sml-telnet.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insertMaxNumPerReq-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insertMaxNumPerReq-sml.json
index d950a260f6ed3ad4a9ed53bc859304a71e5a680a..33e61b7d2052ed136911face5356d4dc911eb975 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insertMaxNumPerReq-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insertMaxNumPerReq-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insertNumOfrecordPerReq0-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insertNumOfrecordPerReq0-sml.json
index 0deed5ba5420a1dd9a1efddbb6e1e7a757dc10d0..aff3190e1a24a5961d3e887dbd680b74b87ad141 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insertNumOfrecordPerReq0-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insertNumOfrecordPerReq0-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insertNumOfrecordPerReqless0-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insertNumOfrecordPerReqless0-sml.json
index 9d1d1ee71898d5e80a7310822da00de6c4636746..b9f11954571ab52c212b24cb6ee23f382412968a 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insertNumOfrecordPerReqless0-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insertNumOfrecordPerReqless0-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insertSigcolumnsNum4096-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insertSigcolumnsNum4096-sml.json
index f732d2e0c5575740dc3d1eeade05e09de8860faf..e302d619c4a29557d0ceba1d86b3b4c6988696be 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insertSigcolumnsNum4096-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insertSigcolumnsNum4096-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/sml/insertTagsNumLarge128-sml.json b/tests/pytest/tools/taosdemoAllTest/sml/insertTagsNumLarge128-sml.json
index 24f468d719546733b900ecbd283f2904e96d222f..a692e4ef6f3a8e0f9813e2ecc61b654fbbbc7850 100644
--- a/tests/pytest/tools/taosdemoAllTest/sml/insertTagsNumLarge128-sml.json
+++ b/tests/pytest/tools/taosdemoAllTest/sml/insertTagsNumLarge128-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insert-1s1tnt1r-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insert-1s1tnt1r-stmt.json
index adb8764b2f6f3f89f0c3e2024ef0098ffb45b2c4..eaca2e040f13345080325074d02c5b70d431fdae 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insert-1s1tnt1r-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insert-1s1tnt1r-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insert-1s1tntmr-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insert-1s1tntmr-stmt.json
index b21154f1c578dedfbb880ac6aa8c9a1d101574ef..8f7d0d2e80a07d26e3bd10078f9047d80b46d8b4 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insert-1s1tntmr-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insert-1s1tntmr-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insert-allDataType-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insert-allDataType-stmt.json
index 46a0832612ff0f3db489b1917ff3b2c53606b2de..134e4755b53bc06711b0f6138f74977ccc69efe0 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insert-allDataType-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insert-allDataType-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insert-disorder-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insert-disorder-stmt.json
index e7501804211c60767e073f98865a6ee9d719901f..bc948974b6e60d73520b30c9d03b0cb038e899b9 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insert-disorder-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insert-disorder-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insert-drop-exist-auto-N00-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insert-drop-exist-auto-N00-stmt.json
index 2712f885936c12c1cf7742376ea541fd12e55cd4..c09d5cfeb3cab11007be07bb74c89897ad2b11ec 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insert-drop-exist-auto-N00-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insert-drop-exist-auto-N00-stmt.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insert-drop-exist-auto-Y00-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insert-drop-exist-auto-Y00-stmt.json
index f8fe21a6c4015a27ee663bc7ac54a7889af62add..39e4b3bbc8900f4aa91aaf3472097f363568e2df 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insert-drop-exist-auto-Y00-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insert-drop-exist-auto-Y00-stmt.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insert-interlace-row-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insert-interlace-row-stmt.json
index 45eb612e6f2efcedfe9de8d5f6cb4aeb3a464353..4c5e90f1850cf7ee2f35b7e81179bfef797d3aef 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insert-interlace-row-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insert-interlace-row-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insert-interval-speed-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insert-interval-speed-stmt.json
index 4e6edb2199b4cadffcc4bbc7ac74d00cfb1f1a69..c8c96844749d16b938e0d39ae0da5637271118c7 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insert-interval-speed-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insert-interval-speed-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insert-newdb-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insert-newdb-stmt.json
index 622b2554ec37b223226fcab3ad3e01568937fc0f..f0ad1b4a5f796e222f9d32ccabdaeb757408947a 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insert-newdb-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insert-newdb-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insert-newtable-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insert-newtable-stmt.json
index 31985c85460cf39cc926afdc3c614fb84a45bd4b..15d2753c4b23fc83e40a9317eff95b3945adddfd 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insert-newtable-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insert-newtable-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insert-nodbnodrop-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insert-nodbnodrop-stmt.json
index 3ebc377ca79d5cf472c102f23736960d757636e1..d636c95a9461f6ccea7b21e792ed0034fd8d214d 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insert-nodbnodrop-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insert-nodbnodrop-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insert-offset-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insert-offset-stmt.json
index adc6fa74bee9441999b83196726c2a133da7c24d..263a592dfadcd811f69071c7e1f9efc3a1dc3520 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insert-offset-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insert-offset-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insert-renewdb-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insert-renewdb-stmt.json
index 715644f4f062d166e67f3038bacb903a26fbf93d..04165f16b1c70d9b3e6de547c37ffdb85388a6e6 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insert-renewdb-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insert-renewdb-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insert-sample-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insert-sample-stmt.json
index e3d6ce850aeae242a5ac857cc02a9123845debb7..cc4d180fb5ff3537c71164b6dd288e98503bda08 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insert-sample-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insert-sample-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insert-sample-ts-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insert-sample-ts-stmt.json
index b14c3a8ec6d329e187c84b87412570e220eddb73..d63549b79b7c40a8c847d25f6de45a8618eb4da4 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insert-sample-ts-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insert-sample-ts-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insert-timestep-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insert-timestep-stmt.json
index 563dc86d0a1481e6b117766facf2122c75bd20f2..ffe16eccd195d7bd9d12bc09a2959d57a037513d 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insert-timestep-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insert-timestep-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insertBinaryLenLarge16374AllcolLar49151-error-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insertBinaryLenLarge16374AllcolLar49151-error-stmt.json
index f59d2e4e22e165ddf1adf8b95212d521a75737d9..37714edc74e4469dcceb13934459d3d0df13c6a4 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insertBinaryLenLarge16374AllcolLar49151-error-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insertBinaryLenLarge16374AllcolLar49151-error-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insertBinaryLenLarge16374AllcolLar49151-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insertBinaryLenLarge16374AllcolLar49151-stmt.json
index 4903335d181a0f06a0f0714072301438883f0f6e..4625da3a6b6c3d7024aab08a23c8d692291a0efe 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insertBinaryLenLarge16374AllcolLar49151-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insertBinaryLenLarge16374AllcolLar49151-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insertChildTab0-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insertChildTab0-stmt.json
index a27feee68a7700633197791567647875e6febee4..8f5b62be9b013ed8de5220cbc16eb2f83193760e 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insertChildTab0-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insertChildTab0-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insertChildTabLess0-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insertChildTabLess0-stmt.json
index 50e1a7173b0b708b454559c3a718e48900467c5a..a30c3f7c781375c170cab702f05b46a141320400 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insertChildTabLess0-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insertChildTabLess0-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insertColumnsAndTagNum4096-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insertColumnsAndTagNum4096-stmt.json
index ca0d17f93ba503f3b532aa2cb9245282c540c507..2966af8f238f668d5e2114197135ce831814eafe 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insertColumnsAndTagNum4096-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insertColumnsAndTagNum4096-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insertColumnsAndTagNumLarge4096-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insertColumnsAndTagNumLarge4096-stmt.json
index c5a3a5f76de18589f3271287a78510e39acfb27f..40780dd992ee5c93507a5f19d503c73f7c78062a 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insertColumnsAndTagNumLarge4096-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insertColumnsAndTagNumLarge4096-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insertColumnsNum0-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insertColumnsNum0-stmt.json
index c86e759db4377d05a2e4ec1b1b2bc4144f5689e4..cada61687e11ed251755c7e5f7c5f2d3d23dbbe3 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insertColumnsNum0-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insertColumnsNum0-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insertInterlaceRowsLarge1M-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insertInterlaceRowsLarge1M-stmt.json
index ee36b62f903a2d27b24b55eba9a10146d45080ee..87386853b37ebfb3a45361620cdf7d9de395df8e 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insertInterlaceRowsLarge1M-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insertInterlaceRowsLarge1M-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insertMaxNumPerReq-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insertMaxNumPerReq-stmt.json
index 25086c856e72006ad579641b08858622b2209188..9e213b52a46cc183dbe7e2879ab777cacbe1fecf 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insertMaxNumPerReq-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insertMaxNumPerReq-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insertNumOfrecordPerReq0-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insertNumOfrecordPerReq0-stmt.json
index 4bd071ec15a56feb1ea2b119697f934620d6b8c2..5b4bfbae65dec700a9927c14705f1df47571eff3 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insertNumOfrecordPerReq0-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insertNumOfrecordPerReq0-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insertNumOfrecordPerReqless0-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insertNumOfrecordPerReqless0-stmt.json
index 628c86045fa4a33f5d2e93882ca3b56dbfc91292..efc01bb9e611a9463531c653a9912878832f8fa9 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insertNumOfrecordPerReqless0-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insertNumOfrecordPerReqless0-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insertSigcolumnsNum4096-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insertSigcolumnsNum4096-stmt.json
index 7abab6a0cf00d3161bb85114cb07eb39d7f7a747..e6224159773ed04da1e08a696e5d65db7ee2cca7 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insertSigcolumnsNum4096-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insertSigcolumnsNum4096-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/stmt/insertTagsNumLarge128-stmt.json b/tests/pytest/tools/taosdemoAllTest/stmt/insertTagsNumLarge128-stmt.json
index 8f8539be2117f8706f894f92b2075848b0203216..51ac878c3794ae358e9ebd4dddc03abe1f855b26 100644
--- a/tests/pytest/tools/taosdemoAllTest/stmt/insertTagsNumLarge128-stmt.json
+++ b/tests/pytest/tools/taosdemoAllTest/stmt/insertTagsNumLarge128-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/subInsertdata.json b/tests/pytest/tools/taosdemoAllTest/subInsertdata.json
index 168b3753a13e6bfa2e884f5b8be4a03bb1675b2a..57e823f74a8160e12e6e3331bf718077ba5f0b43 100644
--- a/tests/pytest/tools/taosdemoAllTest/subInsertdata.json
+++ b/tests/pytest/tools/taosdemoAllTest/subInsertdata.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/subInsertdataMaxsql100.json b/tests/pytest/tools/taosdemoAllTest/subInsertdataMaxsql100.json
index 4fb7241012563143cf289f510a8b58f39841b9d0..18487defcce2224491cfe57ec7e8e3649f3849c3 100644
--- a/tests/pytest/tools/taosdemoAllTest/subInsertdataMaxsql100.json
+++ b/tests/pytest/tools/taosdemoAllTest/subInsertdataMaxsql100.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdemoAllTest/taosdemoInsertNanoDB.json b/tests/pytest/tools/taosdemoAllTest/taosdemoInsertNanoDB.json
index 99233bdd738d068664241efda40d96c5a6fc7090..2c6e6260ff820acb0df2b357d78261648f400e1c 100644
--- a/tests/pytest/tools/taosdemoAllTest/taosdemoInsertNanoDB.json
+++ b/tests/pytest/tools/taosdemoAllTest/taosdemoInsertNanoDB.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdump-insert-dp1.json b/tests/pytest/tools/taosdump-insert-dp1.json
index 6481197bd6649576650ebeb95350ea50a31c1c1a..a8efd17a9ba564f957e71d3f8a99b114cb11ff6f 100644
--- a/tests/pytest/tools/taosdump-insert-dp1.json
+++ b/tests/pytest/tools/taosdump-insert-dp1.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tools/taosdump-insert-dp2.json b/tests/pytest/tools/taosdump-insert-dp2.json
index 384a905c737911214fab72a95c9e771c895f98fd..14b0c9265fee4e313592e182f89c755fad5d0def 100644
--- a/tests/pytest/tools/taosdump-insert-dp2.json
+++ b/tests/pytest/tools/taosdump-insert-dp2.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tsdb/insertDataDb1.json b/tests/pytest/tsdb/insertDataDb1.json
index 555ae46be3aed85cb3bc7990465594e32be4ad47..353c704505db2ecd28487c065ebe44802544c0df 100644
--- a/tests/pytest/tsdb/insertDataDb1.json
+++ b/tests/pytest/tsdb/insertDataDb1.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tsdb/insertDataDb1Replica2.json b/tests/pytest/tsdb/insertDataDb1Replica2.json
index 20ea68cc06d1f3fd8ade8b0cfc95a976f339508e..973744c97fe2ea2e82212685ce71984f00ea49fb 100644
--- a/tests/pytest/tsdb/insertDataDb1Replica2.json
+++ b/tests/pytest/tsdb/insertDataDb1Replica2.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tsdb/insertDataDb2.json b/tests/pytest/tsdb/insertDataDb2.json
index 586fb60fcc608309927149d2a26f79220fcc67e1..78fedb44e4d66ad5754cdfa4b24c6c7a4c7dc23a 100644
--- a/tests/pytest/tsdb/insertDataDb2.json
+++ b/tests/pytest/tsdb/insertDataDb2.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tsdb/insertDataDb2Newstab.json b/tests/pytest/tsdb/insertDataDb2Newstab.json
index 0558c8c33d1af477ae3b0cafe9416534db44dfb0..24963aba2cab539a52f7ddc6f5f09749b2a3fefa 100644
--- a/tests/pytest/tsdb/insertDataDb2Newstab.json
+++ b/tests/pytest/tsdb/insertDataDb2Newstab.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tsdb/insertDataDb2NewstabReplica2.json b/tests/pytest/tsdb/insertDataDb2NewstabReplica2.json
index 5bc145994d778105e10ae2631494cddfe8377cf7..a6b6b975a22e5b4a99bf99f2377fc591c82ee009 100644
--- a/tests/pytest/tsdb/insertDataDb2NewstabReplica2.json
+++ b/tests/pytest/tsdb/insertDataDb2NewstabReplica2.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/tsdb/insertDataDb2Replica2.json b/tests/pytest/tsdb/insertDataDb2Replica2.json
index 07bbeaa632ce174aa6f1388689f15cc1c1a77b64..bd97a0ee1941275fffef1508ace2ccaf66023f98 100644
--- a/tests/pytest/tsdb/insertDataDb2Replica2.json
+++ b/tests/pytest/tsdb/insertDataDb2Replica2.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/wal/insertDataDb1.json b/tests/pytest/wal/insertDataDb1.json
index 1b7f757387afb8da99e7bfd7934a68ad90a6a8dd..1e268faac557101940e0615a06b38c5504599b9e 100644
--- a/tests/pytest/wal/insertDataDb1.json
+++ b/tests/pytest/wal/insertDataDb1.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/wal/insertDataDb1Replica2.json b/tests/pytest/wal/insertDataDb1Replica2.json
index 20ea68cc06d1f3fd8ade8b0cfc95a976f339508e..973744c97fe2ea2e82212685ce71984f00ea49fb 100644
--- a/tests/pytest/wal/insertDataDb1Replica2.json
+++ b/tests/pytest/wal/insertDataDb1Replica2.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/wal/insertDataDb2.json b/tests/pytest/wal/insertDataDb2.json
index 15df1350c873a4569187fe8a7cac2f6e2b474eeb..6743ee0c8260eb3861697f1aaadf6c27f05dbcab 100644
--- a/tests/pytest/wal/insertDataDb2.json
+++ b/tests/pytest/wal/insertDataDb2.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/wal/insertDataDb2Newstab.json b/tests/pytest/wal/insertDataDb2Newstab.json
index 0558c8c33d1af477ae3b0cafe9416534db44dfb0..24963aba2cab539a52f7ddc6f5f09749b2a3fefa 100644
--- a/tests/pytest/wal/insertDataDb2Newstab.json
+++ b/tests/pytest/wal/insertDataDb2Newstab.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/wal/insertDataDb2NewstabReplica2.json b/tests/pytest/wal/insertDataDb2NewstabReplica2.json
index 5bc145994d778105e10ae2631494cddfe8377cf7..a6b6b975a22e5b4a99bf99f2377fc591c82ee009 100644
--- a/tests/pytest/wal/insertDataDb2NewstabReplica2.json
+++ b/tests/pytest/wal/insertDataDb2NewstabReplica2.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/pytest/wal/insertDataDb2Replica2.json b/tests/pytest/wal/insertDataDb2Replica2.json
index 07bbeaa632ce174aa6f1388689f15cc1c1a77b64..bd97a0ee1941275fffef1508ace2ccaf66023f98 100644
--- a/tests/pytest/wal/insertDataDb2Replica2.json
+++ b/tests/pytest/wal/insertDataDb2Replica2.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/2-query/td_12191.json b/tests/system-test/2-query/td_12191.json
index f5d26db40dc04867c0613a83302d5c3d193e0b7c..daf938a4612ce4e6b815c1453404dab0c2722439 100644
--- a/tests/system-test/2-query/td_12191.json
+++ b/tests/system-test/2-query/td_12191.json
@@ -24,7 +24,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoInsertMSDB.json b/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoInsertMSDB.json
index 8bd5ddbae8d5ce81269626165b2d275d05135ea5..c3ea89a0534a3a87a23801e053be96cde8f1b7df 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoInsertMSDB.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoInsertMSDB.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoInsertNanoDB.json b/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoInsertNanoDB.json
index 5408a9841ab8a40e4ca7564724b7f6c7f941e0e0..b6428b482c3958a948d6c8615d26921b45a935d1 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoInsertNanoDB.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoInsertNanoDB.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoInsertUSDB.json b/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoInsertUSDB.json
index 13eb80f3cf7f751398babed8e922f9e5b3a4242e..4a648092cc3f4efac5a0d027f7d36d7af2a7d520 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoInsertUSDB.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoInsertUSDB.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoTestNanoDatabase.json b/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoTestNanoDatabase.json
index 38ac666fac5097d616c17bdfc7e900256827ddf4..afe156e18c4dad98eea5d81a0a8772e48a735945 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoTestNanoDatabase.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoTestNanoDatabase.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoTestNanoDatabaseInsertForSub.json b/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoTestNanoDatabaseInsertForSub.json
index 467c54988bd05a93091e3831e52c9a3785c0f26d..73511dbdd6534d1c9ca1277fa6c902583adb9b76 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoTestNanoDatabaseInsertForSub.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoTestNanoDatabaseInsertForSub.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoTestNanoDatabaseNow.json b/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoTestNanoDatabaseNow.json
index a09dec21fa9cf3720b68a1fa2e843b49be0544ee..dede88c2dfe8b7dd1dca29d96b698b6e13202237 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoTestNanoDatabaseNow.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoTestNanoDatabaseNow.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoTestNanoDatabasecsv.json b/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoTestNanoDatabasecsv.json
index 52e772becacffb406d30d902ae852d065f902a9e..20998d3392a82bcf5ef47e092bd747d8f8934f75 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoTestNanoDatabasecsv.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/NanoTestCase/taosdemoTestNanoDatabasecsv.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/TD-10539/create_taosdemo_no.json b/tests/system-test/5-taos-tools/taosbenchmark/TD-10539/create_taosdemo_no.json
index 759a437b448c8c65bf252e859345dd9557cc51c5..b7411913034d3e147a8de42300139c3c59dccb67 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/TD-10539/create_taosdemo_no.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/TD-10539/create_taosdemo_no.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/TD-10539/create_taosdemo_yes.json b/tests/system-test/5-taos-tools/taosbenchmark/TD-10539/create_taosdemo_yes.json
index aafc79215fc0b94d037da3a9b229a2f967b51613..fa1eb1f7ff486f2dc78a2e06160fdf5263c1ba6a 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/TD-10539/create_taosdemo_yes.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/TD-10539/create_taosdemo_yes.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/TD-3453/query-interrupt.json b/tests/system-test/5-taos-tools/taosbenchmark/TD-3453/query-interrupt.json
index c2e4920097cd1b3581c9893c9677c3cf1f14b7ed..fc9bb5816d66500df37354c86debe5437fedfdaf 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/TD-3453/query-interrupt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/TD-3453/query-interrupt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/TD-4985/query-limit-offset.json b/tests/system-test/5-taos-tools/taosbenchmark/TD-4985/query-limit-offset.json
index ad85f9607b72c5d4562266508bfdcf68837c33bd..1b726ef5da5a7f699b99c0e03238337bfac0c575 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/TD-4985/query-limit-offset.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/TD-4985/query-limit-offset.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-1s1tnt1r.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-1s1tnt1r.json
index d73719ebe41c5f25fc2cd585bc9974d9e83a946e..f379fe61bf3e799eb5315cf5f41bd5158de29b6b 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-1s1tnt1r.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-1s1tnt1r.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-1s1tntmr.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-1s1tntmr.json
index e10fd1116b948032d5aa67dc0844bbf493d650de..142098865062b0b6489a1aae18b6492f3e4b129b 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-1s1tntmr.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-1s1tntmr.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-allDataType.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-allDataType.json
index a7ada9b84e2bb534eac63364039598d1ddb4c744..1e714c081321c6fc7005d10e49211a4cf10e44b9 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-allDataType.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-allDataType.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-chinese-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-chinese-sml.json
index 49407a76d76edda3c45716134521265114702f11..3633bb64820bc49cedaf3c0964a0384b34e38a32 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-chinese-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-chinese-sml.json
@@ -27,7 +27,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-chinese.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-chinese.json
index ab848b1317049f672775ec0cc6d1f6c3cd78760e..88ace597784901c8865ee539517a39757e722231 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-chinese.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-chinese.json
@@ -27,7 +27,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-disorder.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-disorder.json
index d6420b100e5ad2bae887b3ae5fb5cc0f306d9762..2ae3d6c1ceb91f59ee1d7661b7c5f816d8465496 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-disorder.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-disorder.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-drop-exist-auto-N00.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-drop-exist-auto-N00.json
index 2c3b8c6f81962e02ff5aac37c58fb04b79159a7c..fc2cf160a4ee51ad020bd8aa0bd4a2dc6ee0b95c 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-drop-exist-auto-N00.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-drop-exist-auto-N00.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-drop-exist-auto-Y00.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-drop-exist-auto-Y00.json
index f8fe21a6c4015a27ee663bc7ac54a7889af62add..39e4b3bbc8900f4aa91aaf3472097f363568e2df 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-drop-exist-auto-Y00.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-drop-exist-auto-Y00.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-illegal.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-illegal.json
index c56f8f30402aa948828377b46e5cf8678a3b3472..920eed645608002435d335ece4527cfdcf06d4ae 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-illegal.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-illegal.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-interlace-row.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-interlace-row.json
index 93bb92764d3e4ba141a8b8c9b2df4fda69cb9eaa..a40c17d1f94f2b43de2cee7d2c83a8b0f29156f7 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-interlace-row.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-interlace-row.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-interval-speed.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-interval-speed.json
index d51dee428fc8f1bb61af84d5f570f69cce344651..ae15b41e4fc464e6cd4932c63c3d1df440ff6fd5 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-interval-speed.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-interval-speed.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-newdb.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-newdb.json
index 05a6f7606a22f7c4712ed7c1a4452c43c87f5428..4386b7a7ee9fa21bfcfb115dccb2e72b509e3c80 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-newdb.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-newdb.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-newtable.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-newtable.json
index 02b56bbfe8a5e0900467e0dc0537919465a406a7..a87e257ff94d342b83a39b19c1bffd08be35ffe5 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-newtable.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-newtable.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-nodbnodrop.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-nodbnodrop.json
index 5978e5529f8d3a3b29cb04f1744a045b56e7e5ba..44707e87484d0cd898fc35cbb3b0d561072a59cf 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-nodbnodrop.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-nodbnodrop.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-offset.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-offset.json
index 53edf41072a93b907da8af6648dab03691e039a8..351a2b38d59fa2569d60a2fc48c3c2cf81ce6c68 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-offset.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-offset.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-renewdb.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-renewdb.json
index 91c033c67711e0713f65a08a48351288470d565e..de023d15a2b9654df5999940ed04a46e4eeabd27 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-renewdb.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-renewdb.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-sample-ts.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-sample-ts.json
index 344293b5558f3d0c95d417fbd60009f767467f9d..6d37233b975ab67cf8ca30f1cfc9268e3b449400 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-sample-ts.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-sample-ts.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-sample.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-sample.json
index c31099913b2a14543bca32db646c204498e3fe5c..d251dafe4ba07c6a28cf3979e52ee77b1d630ef5 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-sample.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-sample.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert-timestep.json b/tests/system-test/5-taos-tools/taosbenchmark/insert-timestep.json
index c794c73c843607a7ef6bb84b288ac890a317bfa9..059643a851faefa30c0345aac52e0779de2a7fa6 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert-timestep.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert-timestep.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insertBinaryLenLarge16374AllcolLar49151-error.json b/tests/system-test/5-taos-tools/taosbenchmark/insertBinaryLenLarge16374AllcolLar49151-error.json
index be55d31d5595b210695584f6dbbc334bb7b7f8e6..7f16fa74ec383df86360ebe3fbb2f956f81e8d90 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insertBinaryLenLarge16374AllcolLar49151-error.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insertBinaryLenLarge16374AllcolLar49151-error.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insertBinaryLenLarge16374AllcolLar49151.json b/tests/system-test/5-taos-tools/taosbenchmark/insertBinaryLenLarge16374AllcolLar49151.json
index 67abdc67eed813501e012c8b7dce5d0719d22eb6..ffcd49e32e1774b70d7430f3b75ef4347c4eea94 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insertBinaryLenLarge16374AllcolLar49151.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insertBinaryLenLarge16374AllcolLar49151.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insertChildTab0.json b/tests/system-test/5-taos-tools/taosbenchmark/insertChildTab0.json
index 84aa75eca7ac5eaabfeef715471e9b91ee66dfec..99f89eb7dc82b14e0f4fe3d8543326ad22a19ff9 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insertChildTab0.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insertChildTab0.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insertChildTabLess0.json b/tests/system-test/5-taos-tools/taosbenchmark/insertChildTabLess0.json
index 58acd9bbd022bb55ef573f9a7e9434ed935b55bc..68fa2acf634140643014a028f8377372a78598f1 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insertChildTabLess0.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insertChildTabLess0.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insertColumnsAndTagNum4096.json b/tests/system-test/5-taos-tools/taosbenchmark/insertColumnsAndTagNum4096.json
index ecc62b7251d4b74d163c2d2cd116c0d1b3e80c5c..a96422fc52c2b3d2ffe19b2435f0770074f74ee5 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insertColumnsAndTagNum4096.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insertColumnsAndTagNum4096.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insertColumnsAndTagNumLarge4096.json b/tests/system-test/5-taos-tools/taosbenchmark/insertColumnsAndTagNumLarge4096.json
index fe6f22527d46418d96c7dbdd61336254bf137200..18ea19682ced9b0757bd019f73a85d875471388f 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insertColumnsAndTagNumLarge4096.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insertColumnsAndTagNumLarge4096.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insertColumnsNum0.json b/tests/system-test/5-taos-tools/taosbenchmark/insertColumnsNum0.json
index 52d6ae029de4a2c019545ac047526638237d701e..867152a6030712d8385449f5def8723a57f23f0d 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insertColumnsNum0.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insertColumnsNum0.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insertInterlaceRowsLarge1M.json b/tests/system-test/5-taos-tools/taosbenchmark/insertInterlaceRowsLarge1M.json
index 0c82f1d299f4dbf888c3a5033c283cc1beb2bbeb..aaa5812c49cc14802d84595c019aebb42b4fb62f 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insertInterlaceRowsLarge1M.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insertInterlaceRowsLarge1M.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insertMaxNumPerReq.json b/tests/system-test/5-taos-tools/taosbenchmark/insertMaxNumPerReq.json
index 1166ac36438babefbe0d0de70d5a5e3f088f055f..686a2cc4f108d4439ac26a7f7cdeeee291e7314b 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insertMaxNumPerReq.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insertMaxNumPerReq.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insertNumOfrecordPerReq0.json b/tests/system-test/5-taos-tools/taosbenchmark/insertNumOfrecordPerReq0.json
index 8247c5f0158e5cce4d3891dc88048e4a29a3d888..def5043d4fbe56c8606126b8a997caa0ca193e3f 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insertNumOfrecordPerReq0.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insertNumOfrecordPerReq0.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insertNumOfrecordPerReqless0.json b/tests/system-test/5-taos-tools/taosbenchmark/insertNumOfrecordPerReqless0.json
index 138ebbadf63d16816e723462693684cfd2e4c2c0..f1f4b7f3c66bc5072beac1aac18c9d69c3df72f4 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insertNumOfrecordPerReqless0.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insertNumOfrecordPerReqless0.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insertRestful.json b/tests/system-test/5-taos-tools/taosbenchmark/insertRestful.json
index 682dcf2ce4393815590552e935578df26bb8f43c..cb90c1f89898878b668d052e3eee71aa0c8d01a9 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insertRestful.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insertRestful.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insertSigcolumnsNum4096.json b/tests/system-test/5-taos-tools/taosbenchmark/insertSigcolumnsNum4096.json
index e8468f5906a7ebdef62f6509a8968a0df7bdd775..8b8f959e05b8189e1ae8e0dc038522709f4c9e10 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insertSigcolumnsNum4096.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insertSigcolumnsNum4096.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insertTagsNumLarge128.json b/tests/system-test/5-taos-tools/taosbenchmark/insertTagsNumLarge128.json
index 4dbe2940e2c7954e6b41a8f645d9e8d809d013d6..4480cf47d3476927eecc59098962caf33de27988 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insertTagsNumLarge128.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insertTagsNumLarge128.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/insert_5M_rows.json b/tests/system-test/5-taos-tools/taosbenchmark/insert_5M_rows.json
index 65973ccb485585de689f5e44a3bca28b675732b4..ae820815257f4fd3f33130c2829eb0ba9c4e47ae 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/insert_5M_rows.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/insert_5M_rows.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/manual_block1_comp.json b/tests/system-test/5-taos-tools/taosbenchmark/manual_block1_comp.json
index a1a28c9ee970c9db1f21ace18dd7b8f54f39e5ed..5c8dc689ae00b536719e33d27732377362cbc128 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/manual_block1_comp.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/manual_block1_comp.json
@@ -25,7 +25,6 @@
"minRows": 1000,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/manual_block2.json b/tests/system-test/5-taos-tools/taosbenchmark/manual_block2.json
index 03f6e038fb4072f64569e65e91f86ccd8ce5f86e..c92c18b025e045018512baf2fd879e859324dd93 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/manual_block2.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/manual_block2.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/manual_change_time_1_1_A.json b/tests/system-test/5-taos-tools/taosbenchmark/manual_change_time_1_1_A.json
index 7b8abd6d4e25991d38ff16c737bf8169c7311318..0f7786e6822580d842a91c6f9b498c2ab401b07b 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/manual_change_time_1_1_A.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/manual_change_time_1_1_A.json
@@ -25,7 +25,6 @@
"minRows": 1000,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/manual_change_time_1_1_B.json b/tests/system-test/5-taos-tools/taosbenchmark/manual_change_time_1_1_B.json
index aeee6322e5c0e6b58c0433be5f345e7c4f84f339..f8decfca417ea2a86ac1065334169841694df68c 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/manual_change_time_1_1_B.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/manual_change_time_1_1_B.json
@@ -25,7 +25,6 @@
"minRows": 1000,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/moredemo-offset-limit1.json b/tests/system-test/5-taos-tools/taosbenchmark/moredemo-offset-limit1.json
index e30b7b0b1c6a136aa45c91da165ff8101eeb42e3..f166d461fec3d84f5c2fb4b295272529818ab35a 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/moredemo-offset-limit1.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/moredemo-offset-limit1.json
@@ -27,7 +27,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/moredemo-offset-limit5.json b/tests/system-test/5-taos-tools/taosbenchmark/moredemo-offset-limit5.json
index d4ce2fee46d8848f574d75173818bff819c1d31f..ebbbc001f9da6c384f6cdf2eb4905ea6933e6f58 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/moredemo-offset-limit5.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/moredemo-offset-limit5.json
@@ -27,7 +27,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/moredemo-offset-limit94.json b/tests/system-test/5-taos-tools/taosbenchmark/moredemo-offset-limit94.json
index ce12accf06c101956ec6a9d025e63bb1814acbd0..a18e1e0e1a36af7ea38eb159471c996c368c981d 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/moredemo-offset-limit94.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/moredemo-offset-limit94.json
@@ -27,7 +27,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/moredemo-offset-newdb.json b/tests/system-test/5-taos-tools/taosbenchmark/moredemo-offset-newdb.json
index 9ffb2953d3c46df5a6cbd4e6042748185254e62a..4b246a93d731c47e78d01e280fe777cb5d54e397 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/moredemo-offset-newdb.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/moredemo-offset-newdb.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/query-interrupt.json b/tests/system-test/5-taos-tools/taosbenchmark/query-interrupt.json
index 896e484c258ed4f1418f48a74cd643defc9c6731..8857d5adae2b5ea808e1044fd28512b4562d597b 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/query-interrupt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/query-interrupt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/queryInsertdata.json b/tests/system-test/5-taos-tools/taosbenchmark/queryInsertdata.json
index eb196e4096d26f429f013a8936c910e5dc86c304..756316621d958693c16a5ced6e5882305cf88dcc 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/queryInsertdata.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/queryInsertdata.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/queryInsertrestdata.json b/tests/system-test/5-taos-tools/taosbenchmark/queryInsertrestdata.json
index 0febbdfa19d2ba8dd4db0b318d05c5af18fd1584..0073f52e2bd4dbad211fcfd30ab4e95e3a215401 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/queryInsertrestdata.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/queryInsertrestdata.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-1s1tnt1r-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-1s1tnt1r-sml.json
index 5cd06c02759ddcba93eaa8ef4ef848a9b645cbda..8e96931e523b60a65ce59be79e038472fd4fe929 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-1s1tnt1r-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-1s1tnt1r-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-1s1tntmr-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-1s1tntmr-sml.json
index 0885e01782b41079ccbfb7a30a8b4d3628ba9c20..5042549f09201a71ae9bc907ba2ac162acf4c382 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-1s1tntmr-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-1s1tntmr-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-allDataType-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-allDataType-sml.json
index cbd4f6cb59c1ddd146b42a233c740d6bbaca45d3..0de5ddcc26840162b6e1264266ce4a3de0bd20ab 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-allDataType-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-allDataType-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-disorder-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-disorder-sml.json
index 6f24801cb04f9f515e33898fb587b95029def325..57006fcc3c1a75d7f2064a10b4174f6ecd46a167 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-disorder-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-disorder-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-drop-exist-auto-N00-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-drop-exist-auto-N00-sml.json
index 92e6ec0df7a70329312676298c3b5ffccc2a8767..dcca0f82aef7ed856a61a54ebb28d6ea3c1eccde 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-drop-exist-auto-N00-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-drop-exist-auto-N00-sml.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-drop-exist-auto-Y00-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-drop-exist-auto-Y00-sml.json
index c09493ec7b892baba37a7be4addb0ce526752f07..cdfc5cb26d7a89add24b12fb0731aeaab16d3690 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-drop-exist-auto-Y00-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-drop-exist-auto-Y00-sml.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-interlace-row-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-interlace-row-sml.json
index e04f2ff5e7cb24cb5384b7451712b3fe83bf18c3..caf9a9466b63c0336add8f52f8dd4b83dc87ad3a 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-interlace-row-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-interlace-row-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-interval-speed-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-interval-speed-sml.json
index 4a4227adb8fdcd0cb025a10c5b6f417c921acd96..564f2405e3e008dae7c7dbdf14519860ea5acf25 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-interval-speed-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-interval-speed-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-newdb-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-newdb-sml.json
index 1d29842e02c654987c50e6e73d4aec5eed48aa83..f0a84487d5e3a7fd1a52f655c622d23a8495bf0c 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-newdb-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-newdb-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-newtable-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-newtable-sml.json
index 886503a950ca18b752bfa264218bb8564ce44ae0..ac5ba1dc5ff5b6fb3347cacf1ee276871733d226 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-newtable-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-newtable-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-nodbnodrop-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-nodbnodrop-sml.json
index ca99d135c5f466c911f3063b88fbb3e58c4e4ed4..50af8517bc19a3de655280a6159644cb15df7df5 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-nodbnodrop-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-nodbnodrop-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-offset-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-offset-sml.json
index d0109b50cf449b0e7e1b258ae29723a560b1d2f6..d79ae2b0054e591c6ea40c90ed54072fc36b47a6 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-offset-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-offset-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-renewdb-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-renewdb-sml.json
index f8f3a8ee5cea1834c31ebb275a10977cd960f829..459d47b114e872eb702bbc3fe782562fdc5f4086 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-renewdb-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-renewdb-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-sample-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-sample-sml.json
index a778c4860bfb92c2342409d17f25ef6d46fec707..af214a232205f861a57a41a81d42464bf90c7639 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-sample-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-sample-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-sml-json-alltype.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-sml-json-alltype.json
index 66885ebab89f7221830e66d642ca17b99de0e397..eca27390c6b2c2a93c8e9c7a2222e8785913637e 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-sml-json-alltype.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-sml-json-alltype.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-sml-telnet-alltype.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-sml-telnet-alltype.json
index c9fa0f6fb0ddc777159b5d13f324c65b23cabd0d..6c780edd1537dcd56f56a4d3ee30d70cc4326835 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-sml-telnet-alltype.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-sml-telnet-alltype.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-sml-timestamp.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-sml-timestamp.json
index 4e8ff40cfdb7650f9d82635ac5be42f67904158a..e7704b87fe677abacdf94c71724cf15177a01790 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-sml-timestamp.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-sml-timestamp.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-timestep-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-timestep-sml.json
index 1d496b6b46bf3df3c4312bacafbfb77125491058..1d0490f539ec5ff80e76bb7966bbe5452d5521df 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-timestep-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insert-timestep-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertBinaryLenLarge16374AllcolLar49151-error-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertBinaryLenLarge16374AllcolLar49151-error-sml.json
index c70db14b4c9b5fabe590eb8fec4a1f0e4dbc831a..723260c4228be73e21b01a37e50729dec24e4ce9 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertBinaryLenLarge16374AllcolLar49151-error-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertBinaryLenLarge16374AllcolLar49151-error-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertBinaryLenLarge16374AllcolLar49151-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertBinaryLenLarge16374AllcolLar49151-sml.json
index 12034adc0788f84852019d776fc0987cbc9c4f16..ba3586635b4d000638c72bb6a55d58d2b2fb2d48 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertBinaryLenLarge16374AllcolLar49151-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertBinaryLenLarge16374AllcolLar49151-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertChildTab0-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertChildTab0-sml.json
index 4b27b6b4d01d930578f639638db7a3f277a4cada..b96357983df2f6b27986e251ae9d8cc3fe35b28d 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertChildTab0-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertChildTab0-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertChildTabLess0-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertChildTabLess0-sml.json
index 8f27feba6be7e3018461b0070420cc759cf8fc72..3e37ca197f14d93f83f120fd610e62e0f47e7b2c 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertChildTabLess0-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertChildTabLess0-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertColumnsAndTagNum4096-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertColumnsAndTagNum4096-sml.json
index 2e4063cf272ba18732f0e456362cb1103ba6d5c4..38477734e231196e65c3e78413033691b1d73ff2 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertColumnsAndTagNum4096-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertColumnsAndTagNum4096-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertColumnsAndTagNumLarge4096-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertColumnsAndTagNumLarge4096-sml.json
index 83c08923c4b51aa25b3a41d1b6168b48b1bb680f..215d8f052afd632afc6c2f83c0278f128231648e 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertColumnsAndTagNumLarge4096-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertColumnsAndTagNumLarge4096-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertColumnsNum0-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertColumnsNum0-sml.json
index 92e88141ca09971d0d202ee488471c14e07d4cd3..0804acbae0db9c22972ab4107d8d2ddd0f1ed130 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertColumnsNum0-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertColumnsNum0-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertInterlaceRowsLarge1M-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertInterlaceRowsLarge1M-sml.json
index 18f1a39e0afcdae3d52e4bc4a4a97e15dbcfda37..73845c2dc5042926e7e60ae8ea501ee326bc84f2 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertInterlaceRowsLarge1M-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertInterlaceRowsLarge1M-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertMaxNumPerReq-sml-telnet.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertMaxNumPerReq-sml-telnet.json
index 01ec546012ad04f94cfb6224048fffd89d5cbbc8..b3a113ad38447ce0df6c6e685edc046ff5bea86f 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertMaxNumPerReq-sml-telnet.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertMaxNumPerReq-sml-telnet.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertMaxNumPerReq-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertMaxNumPerReq-sml.json
index d950a260f6ed3ad4a9ed53bc859304a71e5a680a..33e61b7d2052ed136911face5356d4dc911eb975 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertMaxNumPerReq-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertMaxNumPerReq-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertNumOfrecordPerReq0-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertNumOfrecordPerReq0-sml.json
index 0deed5ba5420a1dd9a1efddbb6e1e7a757dc10d0..aff3190e1a24a5961d3e887dbd680b74b87ad141 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertNumOfrecordPerReq0-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertNumOfrecordPerReq0-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertNumOfrecordPerReqless0-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertNumOfrecordPerReqless0-sml.json
index 9d1d1ee71898d5e80a7310822da00de6c4636746..b9f11954571ab52c212b24cb6ee23f382412968a 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertNumOfrecordPerReqless0-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertNumOfrecordPerReqless0-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertSigcolumnsNum4096-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertSigcolumnsNum4096-sml.json
index e15edfdf445eeddeff111a625b6f80e16189b8dc..3db1de723f56e64e5c9160a268315f6ba409a64d 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertSigcolumnsNum4096-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertSigcolumnsNum4096-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertTagsNumLarge128-sml.json b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertTagsNumLarge128-sml.json
index 885aafd8840fdf3e7572e633c971540e05252e53..28a7251216961a561eddca90358ae5e44db618b4 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/sml/insertTagsNumLarge128-sml.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/sml/insertTagsNumLarge128-sml.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-1s1tnt1r-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-1s1tnt1r-stmt.json
index f86eaedd142f5ea02a7bdeb45492c6bbfdec6a1a..98a2dd5ae62b010d3c7b4e8bf7707e29847aaf21 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-1s1tnt1r-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-1s1tnt1r-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-1s1tntmr-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-1s1tntmr-stmt.json
index be7421cd498216d778f6cdb71a71841a57b7aa54..2a056b46e5a5c0be6971d955396ac08ef5fb2b49 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-1s1tntmr-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-1s1tntmr-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-allDataType-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-allDataType-stmt.json
index 46a0832612ff0f3db489b1917ff3b2c53606b2de..134e4755b53bc06711b0f6138f74977ccc69efe0 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-allDataType-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-allDataType-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-disorder-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-disorder-stmt.json
index e7501804211c60767e073f98865a6ee9d719901f..bc948974b6e60d73520b30c9d03b0cb038e899b9 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-disorder-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-disorder-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-drop-exist-auto-N00-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-drop-exist-auto-N00-stmt.json
index 2712f885936c12c1cf7742376ea541fd12e55cd4..c09d5cfeb3cab11007be07bb74c89897ad2b11ec 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-drop-exist-auto-N00-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-drop-exist-auto-N00-stmt.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-drop-exist-auto-Y00-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-drop-exist-auto-Y00-stmt.json
index f8fe21a6c4015a27ee663bc7ac54a7889af62add..39e4b3bbc8900f4aa91aaf3472097f363568e2df 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-drop-exist-auto-Y00-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-drop-exist-auto-Y00-stmt.json
@@ -25,7 +25,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-interlace-row-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-interlace-row-stmt.json
index 45eb612e6f2efcedfe9de8d5f6cb4aeb3a464353..4c5e90f1850cf7ee2f35b7e81179bfef797d3aef 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-interlace-row-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-interlace-row-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-interval-speed-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-interval-speed-stmt.json
index 14fafd60d5d69660e9c65bb3d498e4cbca4759da..93e41ea575f17a2310111f4e8deb32d45a9c8978 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-interval-speed-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-interval-speed-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-newdb-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-newdb-stmt.json
index 622b2554ec37b223226fcab3ad3e01568937fc0f..f0ad1b4a5f796e222f9d32ccabdaeb757408947a 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-newdb-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-newdb-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-newtable-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-newtable-stmt.json
index 31985c85460cf39cc926afdc3c614fb84a45bd4b..15d2753c4b23fc83e40a9317eff95b3945adddfd 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-newtable-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-newtable-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-nodbnodrop-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-nodbnodrop-stmt.json
index 3ebc377ca79d5cf472c102f23736960d757636e1..d636c95a9461f6ccea7b21e792ed0034fd8d214d 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-nodbnodrop-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-nodbnodrop-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-offset-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-offset-stmt.json
index adc6fa74bee9441999b83196726c2a133da7c24d..263a592dfadcd811f69071c7e1f9efc3a1dc3520 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-offset-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-offset-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-renewdb-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-renewdb-stmt.json
index 715644f4f062d166e67f3038bacb903a26fbf93d..04165f16b1c70d9b3e6de547c37ffdb85388a6e6 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-renewdb-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-renewdb-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-sample-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-sample-stmt.json
index e3d6ce850aeae242a5ac857cc02a9123845debb7..cc4d180fb5ff3537c71164b6dd288e98503bda08 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-sample-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-sample-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-sample-ts-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-sample-ts-stmt.json
index 344293b5558f3d0c95d417fbd60009f767467f9d..6d37233b975ab67cf8ca30f1cfc9268e3b449400 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-sample-ts-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-sample-ts-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-timestep-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-timestep-stmt.json
index 563dc86d0a1481e6b117766facf2122c75bd20f2..ffe16eccd195d7bd9d12bc09a2959d57a037513d 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-timestep-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insert-timestep-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertBinaryLenLarge16374AllcolLar49151-error-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertBinaryLenLarge16374AllcolLar49151-error-stmt.json
index f59d2e4e22e165ddf1adf8b95212d521a75737d9..37714edc74e4469dcceb13934459d3d0df13c6a4 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertBinaryLenLarge16374AllcolLar49151-error-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertBinaryLenLarge16374AllcolLar49151-error-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertBinaryLenLarge16374AllcolLar49151-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertBinaryLenLarge16374AllcolLar49151-stmt.json
index 4903335d181a0f06a0f0714072301438883f0f6e..4625da3a6b6c3d7024aab08a23c8d692291a0efe 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertBinaryLenLarge16374AllcolLar49151-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertBinaryLenLarge16374AllcolLar49151-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertChildTab0-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertChildTab0-stmt.json
index a27feee68a7700633197791567647875e6febee4..8f5b62be9b013ed8de5220cbc16eb2f83193760e 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertChildTab0-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertChildTab0-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertChildTabLess0-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertChildTabLess0-stmt.json
index 50e1a7173b0b708b454559c3a718e48900467c5a..a30c3f7c781375c170cab702f05b46a141320400 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertChildTabLess0-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertChildTabLess0-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertColumnsAndTagNum4096-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertColumnsAndTagNum4096-stmt.json
index ca0d17f93ba503f3b532aa2cb9245282c540c507..2966af8f238f668d5e2114197135ce831814eafe 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertColumnsAndTagNum4096-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertColumnsAndTagNum4096-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertColumnsAndTagNumLarge4096-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertColumnsAndTagNumLarge4096-stmt.json
index c5a3a5f76de18589f3271287a78510e39acfb27f..40780dd992ee5c93507a5f19d503c73f7c78062a 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertColumnsAndTagNumLarge4096-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertColumnsAndTagNumLarge4096-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertColumnsNum0-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertColumnsNum0-stmt.json
index c86e759db4377d05a2e4ec1b1b2bc4144f5689e4..cada61687e11ed251755c7e5f7c5f2d3d23dbbe3 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertColumnsNum0-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertColumnsNum0-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertInterlaceRowsLarge1M-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertInterlaceRowsLarge1M-stmt.json
index ee36b62f903a2d27b24b55eba9a10146d45080ee..87386853b37ebfb3a45361620cdf7d9de395df8e 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertInterlaceRowsLarge1M-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertInterlaceRowsLarge1M-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertMaxNumPerReq-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertMaxNumPerReq-stmt.json
index 25086c856e72006ad579641b08858622b2209188..9e213b52a46cc183dbe7e2879ab777cacbe1fecf 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertMaxNumPerReq-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertMaxNumPerReq-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertNumOfrecordPerReq0-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertNumOfrecordPerReq0-stmt.json
index 4bd071ec15a56feb1ea2b119697f934620d6b8c2..5b4bfbae65dec700a9927c14705f1df47571eff3 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertNumOfrecordPerReq0-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertNumOfrecordPerReq0-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertNumOfrecordPerReqless0-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertNumOfrecordPerReqless0-stmt.json
index 628c86045fa4a33f5d2e93882ca3b56dbfc91292..efc01bb9e611a9463531c653a9912878832f8fa9 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertNumOfrecordPerReqless0-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertNumOfrecordPerReqless0-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertSigcolumnsNum4096-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertSigcolumnsNum4096-stmt.json
index 7abab6a0cf00d3161bb85114cb07eb39d7f7a747..e6224159773ed04da1e08a696e5d65db7ee2cca7 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertSigcolumnsNum4096-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertSigcolumnsNum4096-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertTagsNumLarge128-stmt.json b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertTagsNumLarge128-stmt.json
index 8f8539be2117f8706f894f92b2075848b0203216..51ac878c3794ae358e9ebd4dddc03abe1f855b26 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertTagsNumLarge128-stmt.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/stmt/insertTagsNumLarge128-stmt.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/subInsertdata.json b/tests/system-test/5-taos-tools/taosbenchmark/subInsertdata.json
index 168b3753a13e6bfa2e884f5b8be4a03bb1675b2a..57e823f74a8160e12e6e3331bf718077ba5f0b43 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/subInsertdata.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/subInsertdata.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/subInsertdataMaxsql100.json b/tests/system-test/5-taos-tools/taosbenchmark/subInsertdataMaxsql100.json
index 4fb7241012563143cf289f510a8b58f39841b9d0..18487defcce2224491cfe57ec7e8e3649f3849c3 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/subInsertdataMaxsql100.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/subInsertdataMaxsql100.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,
diff --git a/tests/system-test/5-taos-tools/taosbenchmark/taosdemoInsertNanoDB.json b/tests/system-test/5-taos-tools/taosbenchmark/taosdemoInsertNanoDB.json
index 99233bdd738d068664241efda40d96c5a6fc7090..2c6e6260ff820acb0df2b357d78261648f400e1c 100644
--- a/tests/system-test/5-taos-tools/taosbenchmark/taosdemoInsertNanoDB.json
+++ b/tests/system-test/5-taos-tools/taosbenchmark/taosdemoInsertNanoDB.json
@@ -26,7 +26,6 @@
"minRows": 100,
"maxRows": 4096,
"comp":2,
- "walLevel":1,
"cachelast":0,
"quorum":1,
"fsync":3000,