Merge pull request #30040 from taosdata/feat/TS-5927-fix-review

Feat: [ts 5927] fix review
This commit is contained in:
Simon Guan 2025-03-07 14:16:42 +08:00 committed by GitHub
commit 19c1e33e8c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 1 deletions

View File

@ -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 |
|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|
|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

View File

@ -1017,6 +1017,13 @@ charset 的有效值是 UTF-8。
- 动态修改:支持通过 SQL 修改,重启生效
- 支持版本v3.1.0.0 引入
#### enableStrongPassword
- 说明:密码要符合一个要求:至少包含大写字母、小写字母、数字、特殊字符中的三类。特殊字符包括 `! @ # $ % ^ & * ( ) - _ + = [ ] { } : ; > < ? | ~ , .`
- 类型整数0不启用1启用
- 默认值1
- 动态修改:支持通过 SQL 修改,重启生效
- 支持版本v3.3.5.0 引入
### 流计算参数
#### disableStream

View File

@ -627,7 +627,7 @@ int32_t tDeserializeSClientHbBatchRsp(void *buf, int32_t bufLen, SClientHbBatchR
if (!tDecodeIsEnd(&decoder)) {
TAOS_CHECK_EXIT(tDecodeI8(&decoder, &pBatchRsp->enableStrongPass));
} else {
pBatchRsp->enableStrongPass = 1;
pBatchRsp->enableStrongPass = 0;
}
tEndDecode(&decoder);