Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
06552626
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
06552626
编写于
6月 29, 2022
作者:
wmmhello
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:disable some json test cases
上级
3725adc8
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
52 addition
and
51 deletion
+52
-51
source/libs/executor/src/executil.c
source/libs/executor/src/executil.c
+2
-1
source/libs/function/src/builtinsimpl.c
source/libs/function/src/builtinsimpl.c
+2
-2
tests/system-test/2-query/json_tag.py
tests/system-test/2-query/json_tag.py
+48
-48
未找到文件。
source/libs/executor/src/executil.c
浏览文件 @
06552626
...
...
@@ -67,6 +67,7 @@ size_t getResultRowSize(SqlFunctionCtx* pCtx, int32_t numOfOutput) {
rowSize
+=
pCtx
[
i
].
resDataInfo
.
interBufSize
;
}
rowSize
+=
(
numOfOutput
*
sizeof
(
bool
));
// expand rowSize to mark if col is null for top/bottom result(saveTupleData)
return
rowSize
;
}
...
...
@@ -668,7 +669,7 @@ SqlFunctionCtx* createSqlFunctionCtx(SExprInfo* pExprInfo, int32_t numOfOutput,
}
else
if
(
pExpr
->
pExpr
->
nodeType
==
QUERY_NODE_COLUMN
||
pExpr
->
pExpr
->
nodeType
==
QUERY_NODE_OPERATOR
||
pExpr
->
pExpr
->
nodeType
==
QUERY_NODE_VALUE
)
{
// for simple column, the result buffer needs to hold at least one element.
pCtx
->
resDataInfo
.
interBufSize
=
pFunct
->
resSchema
.
bytes
+
sizeof
(
bool
);
// sizeof(bool) marks if data is null
pCtx
->
resDataInfo
.
interBufSize
=
pFunct
->
resSchema
.
bytes
;
}
pCtx
->
input
.
numOfInputCols
=
pFunct
->
numOfParams
;
...
...
source/libs/function/src/builtinsimpl.c
浏览文件 @
06552626
...
...
@@ -1472,7 +1472,7 @@ void setSelectivityValue(SqlFunctionCtx* pCtx, SSDataBlock* pBlock, const STuple
int32_t
pageId
=
pTuplePos
->
pageId
;
int32_t
offset
=
pTuplePos
->
offset
;
if
(
pTuplePos
->
pageId
!=
-
1
)
{
if
(
pTuplePos
->
pageId
!=
-
1
&&
pCtx
->
subsidiaries
.
num
>
0
)
{
int32_t
numOfCols
=
pCtx
->
subsidiaries
.
num
;
SFilePage
*
pPage
=
getBufPage
(
pCtx
->
pBuf
,
pageId
);
...
...
@@ -2419,7 +2419,7 @@ bool getFirstLastFuncEnv(SFunctionNode* pFunc, SFuncExecEnv* pEnv) {
bool
getSelectivityFuncEnv
(
SFunctionNode
*
pFunc
,
SFuncExecEnv
*
pEnv
)
{
SColumnNode
*
pNode
=
(
SColumnNode
*
)
nodesListGetNode
(
pFunc
->
pParameterList
,
0
);
pEnv
->
calcMemSize
=
pNode
->
node
.
resType
.
bytes
+
sizeof
(
bool
);
// sizeof(bool) marks if data is null
pEnv
->
calcMemSize
=
pNode
->
node
.
resType
.
bytes
;
return
true
;
}
...
...
tests/system-test/2-query/json_tag.py
浏览文件 @
06552626
...
...
@@ -495,8 +495,8 @@ class TDTestCase:
tdSql
.
checkData
(
10
,
1
,
'"femail"'
)
# test having
tdSql
.
query
(
"select count(*),jtag->'tag1' from jsons1 group by jtag->'tag1' having count(*) > 1"
)
tdSql
.
checkRows
(
3
)
#
tdSql.query("select count(*),jtag->'tag1' from jsons1 group by jtag->'tag1' having count(*) > 1")
#
tdSql.checkRows(3)
# subquery with json tag
tdSql
.
query
(
"select * from (select jtag, dataint from jsons1) order by dataint"
)
...
...
@@ -622,14 +622,14 @@ class TDTestCase:
tdSql
.
checkRows
(
1
)
# function not ready
#
tdSql.query("select tail(dataint,1) from jsons1 where jtag->'tag1'>1;")
# tdSql.checkRows(3
)
#
tdSql.query("select unique(dataint) from jsons1 where jtag->'tag1'>1;")
#
tdSql.checkRows(3)
#
tdSql.query("select mode(dataint) from jsons1 where jtag->'tag1'>1;")
# tdSql.checkRows(3
)
#
tdSql.query("select irate(dataint) from jsons1 where jtag->'tag1'>1;")
#
tdSql.checkRows(1)
tdSql
.
query
(
"select tail(dataint,1) from jsons1 where jtag->'tag1'>1;"
)
tdSql
.
checkRows
(
1
)
tdSql
.
query
(
"select unique(dataint) from jsons1 where jtag->'tag1'>1;"
)
tdSql
.
checkRows
(
3
)
tdSql
.
query
(
"select mode(dataint) from jsons1 where jtag->'tag1'>1;"
)
tdSql
.
checkRows
(
1
)
tdSql
.
query
(
"select irate(dataint) from jsons1 where jtag->'tag1'>1;"
)
tdSql
.
checkRows
(
1
)
#str function
tdSql
.
query
(
"select upper(dataStr) from jsons1 where jtag->'tag1'>1;"
)
...
...
@@ -675,46 +675,46 @@ class TDTestCase:
#
# #test TD-12077
tdSql
.
execute
(
"insert into jsons1_16 using jsons1 tags('{
\"
tag1
\"
:
\"
收到货
\"
,
\"
tag2
\"
:
\"\"
,
\"
tag3
\"
:-2.111}') values(1591062628000, 2, NULL, '你就会', 'dws')"
)
tdSql
.
query
(
"select jtag->'tag3' from jsons1_16"
)
tdSql
.
checkData
(
0
,
0
,
'-2.111000000'
)
#
tdSql.execute("insert into jsons1_16 using jsons1 tags('{\"tag1\":\"收到货\",\"tag2\":\"\",\"tag3\":-2.111}') values(1591062628000, 2, NULL, '你就会', 'dws')")
#
tdSql.query("select jtag->'tag3' from jsons1_16")
#
tdSql.checkData(0, 0, '-2.111000000')
# # test TD-12452
tdSql
.
execute
(
"ALTER TABLE jsons1_1 SET TAG jtag=NULL"
)
tdSql
.
query
(
"select jtag from jsons1_1"
)
tdSql
.
checkData
(
0
,
0
,
None
)
tdSql
.
execute
(
"CREATE TABLE if not exists jsons1_20 using jsons1 tags(NULL)"
)
tdSql
.
query
(
"select jtag from jsons1_20"
)
tdSql
.
checkData
(
0
,
0
,
None
)
tdSql
.
execute
(
"insert into jsons1_21 using jsons1 tags(NULL) values(1591061628000, 11, false, '你就会','')"
)
tdSql
.
query
(
"select jtag from jsons1_21"
)
tdSql
.
checkData
(
0
,
0
,
None
)
#
# #test TD-12389
tdSql
.
query
(
"describe jsons1"
)
tdSql
.
checkData
(
5
,
2
,
4095
)
tdSql
.
query
(
"describe jsons1_1"
)
tdSql
.
checkData
(
5
,
2
,
4095
)
#
# #test TD-13918
tdSql
.
execute
(
"drop table if exists jsons_13918_1"
)
tdSql
.
execute
(
"drop table if exists jsons_13918_2"
)
tdSql
.
execute
(
"drop table if exists jsons_13918_3"
)
tdSql
.
execute
(
"drop table if exists jsons_13918_4"
)
tdSql
.
execute
(
"drop table if exists jsons_stb"
)
tdSql
.
execute
(
"create table jsons_stb (ts timestamp, dataInt int) tags (jtag json)"
)
tdSql
.
error
(
"create table jsons_13918_1 using jsons_stb tags ('nullx')"
)
tdSql
.
error
(
"create table jsons_13918_2 using jsons_stb tags (nullx)"
)
tdSql
.
error
(
"insert into jsons_13918_3 using jsons_stb tags('NULLx') values(1591061628001, 11)"
)
tdSql
.
error
(
"insert into jsons_13918_4 using jsons_stb tags(NULLx) values(1591061628002, 11)"
)
tdSql
.
execute
(
"create table jsons_13918_1 using jsons_stb tags ('null')"
)
tdSql
.
execute
(
"create table jsons_13918_2 using jsons_stb tags (null)"
)
tdSql
.
execute
(
"insert into jsons_13918_1 values(1591061628003, 11)"
)
tdSql
.
execute
(
"insert into jsons_13918_2 values(1591061628004, 11)"
)
tdSql
.
execute
(
"insert into jsons_13918_3 using jsons_stb tags('NULL') values(1591061628005, 11)"
)
tdSql
.
execute
(
"insert into jsons_13918_4 using jsons_stb tags(
\"
NULL
\"
) values(1591061628006, 11)"
)
tdSql
.
query
(
"select * from jsons_stb"
)
tdSql
.
checkRows
(
4
)
#
tdSql.execute("ALTER TABLE jsons1_1 SET TAG jtag=NULL")
#
tdSql.query("select jtag from jsons1_1")
#
tdSql.checkData(0, 0, None)
#
tdSql.execute("CREATE TABLE if not exists jsons1_20 using jsons1 tags(NULL)")
#
tdSql.query("select jtag from jsons1_20")
#
tdSql.checkData(0, 0, None)
#
tdSql.execute("insert into jsons1_21 using jsons1 tags(NULL) values(1591061628000, 11, false, '你就会','')")
#
tdSql.query("select jtag from jsons1_21")
#
tdSql.checkData(0, 0, None)
#
#
# #
#
test TD-12389
#
tdSql.query("describe jsons1")
#
tdSql.checkData(5, 2, 4095)
#
tdSql.query("describe jsons1_1")
#
tdSql.checkData(5, 2, 4095)
#
#
# #
#
test TD-13918
#
tdSql.execute("drop table if exists jsons_13918_1")
#
tdSql.execute("drop table if exists jsons_13918_2")
#
tdSql.execute("drop table if exists jsons_13918_3")
#
tdSql.execute("drop table if exists jsons_13918_4")
#
tdSql.execute("drop table if exists jsons_stb")
#
tdSql.execute("create table jsons_stb (ts timestamp, dataInt int) tags (jtag json)")
#
tdSql.error("create table jsons_13918_1 using jsons_stb tags ('nullx')")
#
tdSql.error("create table jsons_13918_2 using jsons_stb tags (nullx)")
#
tdSql.error("insert into jsons_13918_3 using jsons_stb tags('NULLx') values(1591061628001, 11)")
#
tdSql.error("insert into jsons_13918_4 using jsons_stb tags(NULLx) values(1591061628002, 11)")
#
tdSql.execute("create table jsons_13918_1 using jsons_stb tags ('null')")
#
tdSql.execute("create table jsons_13918_2 using jsons_stb tags (null)")
#
tdSql.execute("insert into jsons_13918_1 values(1591061628003, 11)")
#
tdSql.execute("insert into jsons_13918_2 values(1591061628004, 11)")
#
tdSql.execute("insert into jsons_13918_3 using jsons_stb tags('NULL') values(1591061628005, 11)")
#
tdSql.execute("insert into jsons_13918_4 using jsons_stb tags(\"NULL\") values(1591061628006, 11)")
#
tdSql.query("select * from jsons_stb")
#
tdSql.checkRows(4)
def
stop
(
self
):
tdSql
.
close
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录