Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
349818c9
T
TDengine
项目概览
慢慢CG
/
TDengine
与 Fork 源项目一致
Fork自
taosdata / TDengine
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
349818c9
编写于
8月 04, 2021
作者:
wmmhello
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-5578]<fix> the max length of wild cards can be configured
上级
1c0cc17e
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
8 addition
and
8 deletion
+8
-8
packaging/cfg/taos.cfg
packaging/cfg/taos.cfg
+2
-2
src/client/src/tscSQLParser.c
src/client/src/tscSQLParser.c
+2
-2
src/common/inc/tglobal.h
src/common/inc/tglobal.h
+1
-1
src/common/src/tglobal.c
src/common/src/tglobal.c
+3
-3
未找到文件。
packaging/cfg/taos.cfg
浏览文件 @
349818c9
...
@@ -144,8 +144,8 @@ keepColumnName 1
...
@@ -144,8 +144,8 @@ keepColumnName 1
# max length of an SQL
# max length of an SQL
# maxSQLLength 65480
# maxSQLLength 65480
# max length of
like
# max length of
WildCards
# max
LikeLength
100
# max
WildCardsLength
100
# the maximum number of records allowed for super table time sorting
# the maximum number of records allowed for super table time sorting
# maxNumOfOrderedRes 100000
# maxNumOfOrderedRes 100000
...
...
src/client/src/tscSQLParser.c
浏览文件 @
349818c9
...
@@ -4401,9 +4401,9 @@ static int32_t validateLikeExpr(tSqlExpr* pExpr, STableMeta* pTableMeta, int32_t
...
@@ -4401,9 +4401,9 @@ static int32_t validateLikeExpr(tSqlExpr* pExpr, STableMeta* pTableMeta, int32_t
tSqlExpr
*
pRight
=
pExpr
->
pRight
;
tSqlExpr
*
pRight
=
pExpr
->
pRight
;
if
(
pExpr
->
tokenId
==
TK_LIKE
)
{
if
(
pExpr
->
tokenId
==
TK_LIKE
)
{
if
(
pRight
->
value
.
nLen
>
tsMax
LikeString
Len
)
{
if
(
pRight
->
value
.
nLen
>
tsMax
WildCards
Len
)
{
char
tmp
[
64
]
=
{
0
};
char
tmp
[
64
]
=
{
0
};
sprintf
(
tmp
,
msg1
,
tsMax
LikeString
Len
);
sprintf
(
tmp
,
msg1
,
tsMax
WildCards
Len
);
return
invalidOperationMsg
(
msgBuf
,
tmp
);
return
invalidOperationMsg
(
msgBuf
,
tmp
);
}
}
...
...
src/common/inc/tglobal.h
浏览文件 @
349818c9
...
@@ -70,7 +70,7 @@ extern int8_t tsKeepOriginalColumnName;
...
@@ -70,7 +70,7 @@ extern int8_t tsKeepOriginalColumnName;
// client
// client
extern
int32_t
tsMaxSQLStringLen
;
extern
int32_t
tsMaxSQLStringLen
;
extern
int32_t
tsMax
LikeString
Len
;
extern
int32_t
tsMax
WildCards
Len
;
extern
int8_t
tsTscEnableRecordSql
;
extern
int8_t
tsTscEnableRecordSql
;
extern
int32_t
tsMaxNumOfOrderedResults
;
extern
int32_t
tsMaxNumOfOrderedResults
;
extern
int32_t
tsMinSlidingTime
;
extern
int32_t
tsMinSlidingTime
;
...
...
src/common/src/tglobal.c
浏览文件 @
349818c9
...
@@ -76,7 +76,7 @@ int32_t tsCompressMsgSize = -1;
...
@@ -76,7 +76,7 @@ int32_t tsCompressMsgSize = -1;
// client
// client
int32_t
tsMaxSQLStringLen
=
TSDB_MAX_ALLOWED_SQL_LEN
;
int32_t
tsMaxSQLStringLen
=
TSDB_MAX_ALLOWED_SQL_LEN
;
int32_t
tsMax
LikeString
Len
=
TSDB_PATTERN_STRING_MAX_LEN
;
int32_t
tsMax
WildCards
Len
=
TSDB_PATTERN_STRING_MAX_LEN
;
int8_t
tsTscEnableRecordSql
=
0
;
int8_t
tsTscEnableRecordSql
=
0
;
// the maximum number of results for projection query on super table that are returned from
// the maximum number of results for projection query on super table that are returned from
...
@@ -986,8 +986,8 @@ static void doInitGlobalConfig(void) {
...
@@ -986,8 +986,8 @@ static void doInitGlobalConfig(void) {
cfg
.
unitType
=
TAOS_CFG_UTYPE_BYTE
;
cfg
.
unitType
=
TAOS_CFG_UTYPE_BYTE
;
taosInitConfigOption
(
cfg
);
taosInitConfigOption
(
cfg
);
cfg
.
option
=
"max
Like
Length"
;
cfg
.
option
=
"max
WildCards
Length"
;
cfg
.
ptr
=
&
tsMax
LikeString
Len
;
cfg
.
ptr
=
&
tsMax
WildCards
Len
;
cfg
.
valType
=
TAOS_CFG_VTYPE_INT32
;
cfg
.
valType
=
TAOS_CFG_VTYPE_INT32
;
cfg
.
cfgType
=
TSDB_CFG_CTYPE_B_CONFIG
|
TSDB_CFG_CTYPE_B_CLIENT
|
TSDB_CFG_CTYPE_B_SHOW
;
cfg
.
cfgType
=
TSDB_CFG_CTYPE_B_CONFIG
|
TSDB_CFG_CTYPE_B_CLIENT
|
TSDB_CFG_CTYPE_B_SHOW
;
cfg
.
minValue
=
0
;
cfg
.
minValue
=
0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录