Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
8d85abe7
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
8d85abe7
编写于
1月 17, 2022
作者:
S
shenglian-zhou
提交者:
GitHub
1月 17, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #9831 from taosdata/fix/TD-12909-2.4
[TD-12252]<feature>(query)):taosd crash :for illegal SQL such as sele…
上级
9e5074a6
d53d1c53
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
113 addition
and
7 deletion
+113
-7
src/client/src/tscSQLParser.c
src/client/src/tscSQLParser.c
+10
-3
src/query/src/qFilter.c
src/query/src/qFilter.c
+11
-4
tests/system-test/2-query/TD-12909.py
tests/system-test/2-query/TD-12909.py
+91
-0
tests/system-test/fulltest-query.sh
tests/system-test/fulltest-query.sh
+1
-0
未找到文件。
src/client/src/tscSQLParser.c
浏览文件 @
8d85abe7
...
...
@@ -5666,7 +5666,16 @@ static int32_t validateTagCondExpr(SSqlCmd* pCmd, tExprNode *p) {
if
(
!
p
->
_node
.
pLeft
||
!
p
->
_node
.
pRight
)
{
break
;
}
int32_t
retVal
=
TSDB_CODE_SUCCESS
;
if
(
p
->
_node
.
pLeft
&&
(
retVal
=
validateTagCondExpr
(
pCmd
,
p
->
_node
.
pLeft
))
!=
TSDB_CODE_SUCCESS
)
{
return
retVal
;
}
if
(
p
->
_node
.
pRight
&&
(
retVal
=
validateTagCondExpr
(
pCmd
,
p
->
_node
.
pRight
))
!=
TSDB_CODE_SUCCESS
)
{
return
retVal
;
}
if
(
IS_ARITHMETIC_OPTR
(
p
->
_node
.
optr
))
{
return
invalidOperationMsg
(
tscGetErrorMsgPayload
(
pCmd
),
msg1
);
}
...
...
@@ -5702,8 +5711,6 @@ static int32_t validateTagCondExpr(SSqlCmd* pCmd, tExprNode *p) {
schemaType
=
TSDB_DATA_TYPE_DOUBLE
;
}
int32_t
retVal
=
TSDB_CODE_SUCCESS
;
int32_t
bufLen
=
0
;
if
(
IS_NUMERIC_TYPE
(
vVariant
->
nType
))
{
bufLen
=
60
;
// The maximum length of string that a number is converted to.
...
...
src/query/src/qFilter.c
浏览文件 @
8d85abe7
...
...
@@ -927,7 +927,9 @@ int32_t filterAddUnit(SFilterInfo *info, uint8_t optr, SFilterFieldId *left, SFi
SFilterField
*
val
=
FILTER_UNIT_RIGHT_FIELD
(
info
,
u
);
assert
(
FILTER_GET_FLAG
(
val
->
flag
,
FLD_TYPE_VALUE
));
}
else
{
assert
(
optr
==
TSDB_RELATION_ISNULL
||
optr
==
TSDB_RELATION_NOTNULL
||
optr
==
FILTER_DUMMY_EMPTY_OPTR
);
if
(
optr
!=
TSDB_RELATION_ISNULL
&&
optr
!=
TSDB_RELATION_NOTNULL
&&
optr
!=
FILTER_DUMMY_EMPTY_OPTR
)
{
return
-
1
;
}
}
SFilterField
*
col
=
FILTER_UNIT_LEFT_FIELD
(
info
,
u
);
...
...
@@ -1257,7 +1259,8 @@ int32_t filterAddGroupUnitFromNode(SFilterInfo *info, tExprNode* tree, SArray *g
}
else
{
filterAddFieldFromNode
(
info
,
tree
->
_node
.
pRight
,
&
right
);
filterAddUnit
(
info
,
tree
->
_node
.
optr
,
&
left
,
&
right
,
&
uidx
);
ret
=
filterAddUnit
(
info
,
tree
->
_node
.
optr
,
&
left
,
&
right
,
&
uidx
);
CHK_LRET
(
ret
!=
TSDB_CODE_SUCCESS
,
TSDB_CODE_QRY_APP_ERROR
,
"invalid where condition"
);
SFilterGroup
fgroup
=
{
0
};
filterAddUnitToGroup
(
&
fgroup
,
uidx
);
...
...
@@ -1574,7 +1577,9 @@ void filterDumpInfoToString(SFilterInfo *info, const char *msg, int32_t options)
SFilterField
*
left
=
FILTER_UNIT_LEFT_FIELD
(
info
,
unit
);
SSchema
*
sch
=
left
->
desc
;
len
=
sprintf
(
str
,
"UNIT[%d] => [%d][%s] %s ["
,
i
,
sch
->
colId
,
sch
->
name
,
gOptrStr
[
unit
->
compare
.
optr
].
str
);
if
(
unit
->
compare
.
optr
>=
TSDB_RELATION_INVALID
&&
unit
->
compare
.
optr
<=
TSDB_RELATION_CONTAINS
){
len
=
sprintf
(
str
,
"UNIT[%d] => [%d][%s] %s ["
,
i
,
sch
->
colId
,
sch
->
name
,
gOptrStr
[
unit
->
compare
.
optr
].
str
);
}
if
(
unit
->
right
.
type
==
FLD_TYPE_VALUE
&&
FILTER_UNIT_OPTR
(
unit
)
!=
TSDB_RELATION_IN
)
{
SFilterField
*
right
=
FILTER_UNIT_RIGHT_FIELD
(
info
,
unit
);
...
...
@@ -1591,7 +1596,9 @@ void filterDumpInfoToString(SFilterInfo *info, const char *msg, int32_t options)
if
(
unit
->
compare
.
optr2
)
{
strcat
(
str
,
" && "
);
sprintf
(
str
+
strlen
(
str
),
"[%d][%s] %s ["
,
sch
->
colId
,
sch
->
name
,
gOptrStr
[
unit
->
compare
.
optr2
].
str
);
if
(
unit
->
compare
.
optr2
>=
TSDB_RELATION_INVALID
&&
unit
->
compare
.
optr2
<=
TSDB_RELATION_CONTAINS
){
sprintf
(
str
+
strlen
(
str
),
"[%d][%s] %s ["
,
sch
->
colId
,
sch
->
name
,
gOptrStr
[
unit
->
compare
.
optr2
].
str
);
}
if
(
unit
->
right2
.
type
==
FLD_TYPE_VALUE
&&
FILTER_UNIT_OPTR
(
unit
)
!=
TSDB_RELATION_IN
)
{
SFilterField
*
right
=
FILTER_UNIT_RIGHT2_FIELD
(
info
,
unit
);
...
...
tests/system-test/2-query/TD-12909.py
0 → 100644
浏览文件 @
8d85abe7
###################################################################
# Copyright (c) 2020 by TAOS Technologies, Inc.
# All rights reserved.
#
# This file is proprietary and confidential to TAOS Technologies.
# No part of this file may be reproduced, stored, transmitted,
# disclosed or used in any form or by any means other than as
# expressly provided by the written permission from Jianhui Tao
#
###################################################################
# -*- coding: utf-8 -*-
from
posixpath
import
split
import
sys
import
os
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
from
util.dnodes
import
*
class
TDTestCase
:
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
self
.
ts
=
1420041600000
# 2015-01-01 00:00:00 this is begin time for first record
self
.
num
=
10
def
getBuildPath
(
self
):
selfPath
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
if
(
"community"
in
selfPath
):
projPath
=
selfPath
[:
selfPath
.
find
(
"community"
)]
else
:
projPath
=
selfPath
[:
selfPath
.
find
(
"tests"
)]
for
root
,
dirs
,
files
in
os
.
walk
(
projPath
):
if
(
"taosd"
in
files
):
rootRealPath
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
root
))
if
(
"packaging"
not
in
rootRealPath
):
buildPath
=
root
[:
len
(
root
)
-
len
(
"/build/bin"
)]
break
return
buildPath
def
caseDescription
(
self
):
'''
case1 <wenzhouwww>: [TD-12909] :
this test case is for illegal SQL in query ,it will crash taosd.
'''
return
def
run
(
self
):
tdSql
.
prepare
()
tdSql
.
execute
(
"create database if not exists testdb keep 36500;"
)
tdSql
.
execute
(
"use testdb;"
)
tdSql
.
execute
(
"create stable st (ts timestamp , id int , value double) tags(hostname binary(10) ,ind int);"
)
for
i
in
range
(
self
.
num
):
tdSql
.
execute
(
"insert into sub_%s using st tags('host_%s' , %d) values (%d , %d , %f );"
%
(
str
(
i
),
str
(
i
),
i
*
10
,
self
.
ts
+
10000
*
i
,
i
*
2
,
i
+
10.00
))
tdSql
.
query
(
"select distinct(hostname) from testdb.st"
)
tdSql
.
checkRows
(
10
)
tdSql
.
query
(
"select count(*) from st where hostname >1"
)
tdSql
.
query
(
"select count(*) from st where hostname >'1'"
)
tdSql
.
query
(
"select count(*) from st where hostname <=1"
)
tdSql
.
query
(
"select count(*) from st where hostname <='1'"
)
tdSql
.
query
(
"select count(*) from st where hostname !=1"
)
tdSql
.
query
(
"select count(*) from st where hostname !='1'"
)
tdSql
.
query
(
"select count(*) from st where hostname <>1"
)
tdSql
.
query
(
"select count(*) from st where hostname <>'1'"
)
tdSql
.
query
(
"select count(*) from st where hostname in ('1','2')"
)
tdSql
.
query
(
"select count(*) from st where hostname match '%'"
)
tdSql
.
query
(
"select count(*) from st where hostname match '%1'"
)
tdSql
.
query
(
"select count(*) from st where hostname between 1 and 2"
)
tdSql
.
query
(
"select count(*) from st where hostname between 'abc' and 'def'"
)
tdSql
.
error
(
"select count(*) from st where hostname between 1 and 2 or sum(1)"
)
tdSql
.
error
(
"select count(*) from st where hostname < max(123)"
)
tdSql
.
error
(
"select count(*) from st where hostname < max('abc')"
)
tdSql
.
error
(
"select count(*) from st where hostname < max(min(123))"
)
tdSql
.
error
(
"select count(*) from st where hostname < sum('abc')"
)
tdSql
.
error
(
"select count(*) from st where hostname < sum(min(123))"
)
tdSql
.
error
(
"select count(*) from st where hostname < diff('abc')"
)
tdSql
.
error
(
"select count(*) from st where hostname < diff(min(123))"
)
tdSql
.
error
(
"select count(*) from st where hostname < tbname"
)
tdSql
.
error
(
"select count(*) from st where ts > 0 and tbname in ('d1', 'd2') and tbname-2"
)
tdSql
.
query
(
"select count(*) from st where id > 10000000000000"
)
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
\ No newline at end of file
tests/system-test/fulltest-query.sh
浏览文件 @
8d85abe7
...
...
@@ -3,3 +3,4 @@ python3 ./test.py -f 2-query/TD-11256.py
python3 ./test.py
-f
2-query/TD-11945_crash.py
python3 ./test.py
-f
2-query/TD-12340-12342.py
python3 ./test.py
-f
2-query/TD-12344.py
python3 ./test.py
-f
2-query/TD-12909.py
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录