Merge pull request #30040 from taosdata/feat/TS-5927-fix-review
Feat: [ts 5927] fix review
This commit is contained in:
commit
19c1e33e8c
|
@ -231,6 +231,7 @@ The effective value of charset is UTF-8.
|
||||||
|udf | |Supported, effective after restart|Whether to start UDF service; 0: do not start, 1: start; default value 0 |
|
|udf | |Supported, effective after restart|Whether to start UDF service; 0: do not start, 1: start; default value 0 |
|
||||||
|udfdResFuncs | |Supported, effective after restart|Internal parameter, for setting UDF result sets|
|
|udfdResFuncs | |Supported, effective after restart|Internal parameter, for setting UDF result sets|
|
||||||
|udfdLdLibPath | |Supported, effective after restart|Internal parameter, indicates the library path for loading UDF|
|
|udfdLdLibPath | |Supported, effective after restart|Internal parameter, indicates the library path for loading UDF|
|
||||||
|
|enableStrongPassword | After 3.3.5.0 |Supported, effective after restart|The password include at least three types of characters from the following: uppercase letters, lowercase letters, numbers, and special characters, special characters include `! @ # $ % ^ & * ( ) - _ + = [ ] { } : ; > < ? \| ~ , .`; 0: disable, 1: enable; default value 1 |
|
||||||
|
|
||||||
### Stream Computing Parameters
|
### Stream Computing Parameters
|
||||||
|
|
||||||
|
|
|
@ -1017,6 +1017,13 @@ charset 的有效值是 UTF-8。
|
||||||
- 动态修改:支持通过 SQL 修改,重启生效
|
- 动态修改:支持通过 SQL 修改,重启生效
|
||||||
- 支持版本:v3.1.0.0 引入
|
- 支持版本:v3.1.0.0 引入
|
||||||
|
|
||||||
|
#### enableStrongPassword
|
||||||
|
- 说明:密码要符合一个要求:至少包含大写字母、小写字母、数字、特殊字符中的三类。特殊字符包括 `! @ # $ % ^ & * ( ) - _ + = [ ] { } : ; > < ? | ~ , .`
|
||||||
|
- 类型:整数;0:不启用,1:启用
|
||||||
|
- 默认值:1
|
||||||
|
- 动态修改:支持通过 SQL 修改,重启生效
|
||||||
|
- 支持版本:v3.3.5.0 引入
|
||||||
|
|
||||||
### 流计算参数
|
### 流计算参数
|
||||||
|
|
||||||
#### disableStream
|
#### disableStream
|
||||||
|
|
|
@ -627,7 +627,7 @@ int32_t tDeserializeSClientHbBatchRsp(void *buf, int32_t bufLen, SClientHbBatchR
|
||||||
if (!tDecodeIsEnd(&decoder)) {
|
if (!tDecodeIsEnd(&decoder)) {
|
||||||
TAOS_CHECK_EXIT(tDecodeI8(&decoder, &pBatchRsp->enableStrongPass));
|
TAOS_CHECK_EXIT(tDecodeI8(&decoder, &pBatchRsp->enableStrongPass));
|
||||||
} else {
|
} else {
|
||||||
pBatchRsp->enableStrongPass = 1;
|
pBatchRsp->enableStrongPass = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
tEndDecode(&decoder);
|
tEndDecode(&decoder);
|
||||||
|
|
Loading…
Reference in New Issue