Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
77fcf17a
T
TDengine
项目概览
taosdata
/
TDengine
大约 2 年 前同步成功
通知
1192
Star
22018
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看板
提交
77fcf17a
编写于
6月 30, 2022
作者:
wmmhello
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:error in lock meta if group by json tag, need unlock if error happens
上级
e751e20c
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
42 addition
and
42 deletion
+42
-42
source/libs/executor/src/executorimpl.c
source/libs/executor/src/executorimpl.c
+2
-0
tests/system-test/2-query/json_tag.py
tests/system-test/2-query/json_tag.py
+40
-42
未找到文件。
source/libs/executor/src/executorimpl.c
浏览文件 @
77fcf17a
...
@@ -4041,6 +4041,7 @@ int32_t generateGroupIdMap(STableListInfo* pTableListInfo, SReadHandle* pHandle,
...
@@ -4041,6 +4041,7 @@ int32_t generateGroupIdMap(STableListInfo* pTableListInfo, SReadHandle* pHandle,
}
else
{
}
else
{
taosMemoryFree
(
keyBuf
);
taosMemoryFree
(
keyBuf
);
nodesClearList
(
groupNew
);
nodesClearList
(
groupNew
);
metaReaderClear
(
&
mr
);
return
code
;
return
code
;
}
}
...
@@ -4058,6 +4059,7 @@ int32_t generateGroupIdMap(STableListInfo* pTableListInfo, SReadHandle* pHandle,
...
@@ -4058,6 +4059,7 @@ int32_t generateGroupIdMap(STableListInfo* pTableListInfo, SReadHandle* pHandle,
terrno
=
TSDB_CODE_QRY_JSON_IN_GROUP_ERROR
;
terrno
=
TSDB_CODE_QRY_JSON_IN_GROUP_ERROR
;
taosMemoryFree
(
keyBuf
);
taosMemoryFree
(
keyBuf
);
nodesClearList
(
groupNew
);
nodesClearList
(
groupNew
);
metaReaderClear
(
&
mr
);
return
terrno
;
return
terrno
;
}
}
int32_t
len
=
getJsonValueLen
(
data
);
int32_t
len
=
getJsonValueLen
(
data
);
...
...
tests/system-test/2-query/json_tag.py
浏览文件 @
77fcf17a
...
@@ -471,7 +471,6 @@ class TDTestCase:
...
@@ -471,7 +471,6 @@ class TDTestCase:
tdSql
.
query
(
"select count(*),jtag->'tag1' from jsons1 group by jtag->'tag1' order by jtag->'tag1' asc"
)
tdSql
.
query
(
"select count(*),jtag->'tag1' from jsons1 group by jtag->'tag1' order by jtag->'tag1' asc"
)
tdSql
.
checkRows
(
8
)
tdSql
.
checkRows
(
8
)
tdSql
.
checkData
(
0
,
0
,
2
)
tdSql
.
checkData
(
0
,
1
,
None
)
tdSql
.
checkData
(
0
,
1
,
None
)
tdSql
.
checkData
(
2
,
0
,
1
)
tdSql
.
checkData
(
2
,
0
,
1
)
tdSql
.
checkData
(
2
,
1
,
"false"
)
tdSql
.
checkData
(
2
,
1
,
"false"
)
...
@@ -483,7 +482,6 @@ class TDTestCase:
...
@@ -483,7 +482,6 @@ class TDTestCase:
# test stddev with group by json tag
# test stddev with group by json tag
tdSql
.
query
(
"select stddev(dataint),jtag->'tag1' from jsons1 group by jtag->'tag1' order by jtag->'tag1'"
)
tdSql
.
query
(
"select stddev(dataint),jtag->'tag1' from jsons1 group by jtag->'tag1' order by jtag->'tag1'"
)
tdSql
.
checkRows
(
8
)
tdSql
.
checkRows
(
8
)
tdSql
.
checkData
(
0
,
0
,
10
)
tdSql
.
checkData
(
0
,
1
,
None
)
tdSql
.
checkData
(
0
,
1
,
None
)
tdSql
.
checkData
(
4
,
0
,
0
)
tdSql
.
checkData
(
4
,
0
,
0
)
tdSql
.
checkData
(
4
,
1
,
"5.000000000"
)
tdSql
.
checkData
(
4
,
1
,
"5.000000000"
)
...
@@ -687,47 +685,47 @@ class TDTestCase:
...
@@ -687,47 +685,47 @@ class TDTestCase:
tdSql
.
checkRows
(
1
)
tdSql
.
checkRows
(
1
)
# #test TD-12077
#test TD-12077
# tdSql.execute("insert into jsons1_16 using jsons1 tags('{\"tag1\":\"收到货\",\"tag2\":\"\",\"tag3\":-2.111}') values(1591062628000, 2, NULL, '你就会', 'dws')")
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
.
query
(
"select jtag->'tag3' from jsons1_16"
)
# tdSql.checkData(0, 0, '-2.111000000')
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-12452
# #test TD-12389
# tdSql.execute("ALTER TABLE jsons1_1 SET TAG jtag=NULL")
tdSql
.
query
(
"describe jsons1"
)
# tdSql.query("select jtag from jsons1_1")
tdSql
.
checkData
(
5
,
2
,
4095
)
# tdSql.checkData(0, 0, None)
tdSql
.
query
(
"describe jsons1_1"
)
# tdSql.execute("CREATE TABLE if not exists jsons1_20 using jsons1 tags(NULL)")
tdSql
.
checkData
(
5
,
2
,
4095
)
# tdSql.query("select jtag from jsons1_20")
#
# tdSql.checkData(0, 0, None)
# #test TD-13918
# tdSql.execute("insert into jsons1_21 using jsons1 tags(NULL) values(1591061628000, 11, false, '你就会','')")
tdSql
.
execute
(
"drop table if exists jsons_13918_1"
)
# tdSql.query("select jtag from jsons1_21")
tdSql
.
execute
(
"drop table if exists jsons_13918_2"
)
# tdSql.checkData(0, 0, None)
tdSql
.
execute
(
"drop table if exists jsons_13918_3"
)
# #
tdSql
.
execute
(
"drop table if exists jsons_13918_4"
)
# # #test TD-12389
tdSql
.
execute
(
"drop table if exists jsons_stb"
)
# tdSql.query("describe jsons1")
tdSql
.
execute
(
"create table jsons_stb (ts timestamp, dataInt int) tags (jtag json)"
)
# tdSql.checkData(5, 2, 4095)
tdSql
.
error
(
"create table jsons_13918_1 using jsons_stb tags ('nullx')"
)
# tdSql.query("describe jsons1_1")
tdSql
.
error
(
"create table jsons_13918_2 using jsons_stb tags (nullx)"
)
# tdSql.checkData(5, 2, 4095)
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)"
)
# # #test TD-13918
tdSql
.
execute
(
"create table jsons_13918_1 using jsons_stb tags ('null')"
)
# tdSql.execute("drop table if exists jsons_13918_1")
tdSql
.
execute
(
"create table jsons_13918_2 using jsons_stb tags (null)"
)
# tdSql.execute("drop table if exists jsons_13918_2")
tdSql
.
execute
(
"insert into jsons_13918_1 values(1591061628003, 11)"
)
# tdSql.execute("drop table if exists jsons_13918_3")
tdSql
.
execute
(
"insert into jsons_13918_2 values(1591061628004, 11)"
)
# tdSql.execute("drop table if exists jsons_13918_4")
tdSql
.
execute
(
"insert into jsons_13918_3 using jsons_stb tags('NULL') values(1591061628005, 11)"
)
# tdSql.execute("drop table if exists jsons_stb")
tdSql
.
execute
(
"insert into jsons_13918_4 using jsons_stb tags(
\"
NULL
\"
) values(1591061628006, 11)"
)
# tdSql.execute("create table jsons_stb (ts timestamp, dataInt int) tags (jtag json)")
tdSql
.
query
(
"select * from jsons_stb"
)
# tdSql.error("create table jsons_13918_1 using jsons_stb tags ('nullx')")
tdSql
.
checkRows
(
4
)
# 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
):
def
stop
(
self
):
tdSql
.
close
()
tdSql
.
close
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录