Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
91c750e2
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
91c750e2
编写于
10月 13, 2021
作者:
wmmhello
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
TD-6129<feature> fix select * from json tag
上级
e27ae337
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
21 addition
and
28 deletion
+21
-28
src/common/src/tvariant.c
src/common/src/tvariant.c
+19
-23
src/query/src/qAggMain.c
src/query/src/qAggMain.c
+2
-5
未找到文件。
src/common/src/tvariant.c
浏览文件 @
91c750e2
...
@@ -847,13 +847,12 @@ int32_t tVariantDumpEx(tVariant *pVariant, char *payload, int16_t type, bool inc
...
@@ -847,13 +847,12 @@ int32_t tVariantDumpEx(tVariant *pVariant, char *payload, int16_t type, bool inc
break
;
break
;
}
}
case
TSDB_DATA_TYPE_BINARY
:
case
TSDB_DATA_TYPE_BINARY
:{
case
TSDB_DATA_TYPE_JSON_BINARY
:{
if
(
!
includeLengthPrefix
)
{
if
(
!
includeLengthPrefix
)
{
if
(
pVariant
->
nType
==
TSDB_DATA_TYPE_NULL
)
{
if
(
pVariant
->
nType
==
TSDB_DATA_TYPE_NULL
)
{
*
(
uint8_t
*
)
payload
=
TSDB_DATA_BINARY_NULL
;
*
(
uint8_t
*
)
payload
=
TSDB_DATA_BINARY_NULL
;
}
else
{
}
else
{
if
(
pVariant
->
nType
!=
TSDB_DATA_TYPE_BINARY
&&
pVariant
->
nType
!=
TSDB_DATA_TYPE_JSON_BINARY
)
{
if
(
pVariant
->
nType
!=
TSDB_DATA_TYPE_BINARY
)
{
toBinary
(
pVariant
,
&
payload
,
&
pVariant
->
nLen
);
toBinary
(
pVariant
,
&
payload
,
&
pVariant
->
nLen
);
}
else
{
}
else
{
strncpy
(
payload
,
pVariant
->
pz
,
pVariant
->
nLen
);
strncpy
(
payload
,
pVariant
->
pz
,
pVariant
->
nLen
);
...
@@ -865,7 +864,7 @@ int32_t tVariantDumpEx(tVariant *pVariant, char *payload, int16_t type, bool inc
...
@@ -865,7 +864,7 @@ int32_t tVariantDumpEx(tVariant *pVariant, char *payload, int16_t type, bool inc
}
else
{
}
else
{
char
*
p
=
varDataVal
(
payload
);
char
*
p
=
varDataVal
(
payload
);
if
(
pVariant
->
nType
!=
TSDB_DATA_TYPE_BINARY
&&
pVariant
->
nType
!=
TSDB_DATA_TYPE_JSON_BINARY
)
{
if
(
pVariant
->
nType
!=
TSDB_DATA_TYPE_BINARY
)
{
toBinary
(
pVariant
,
&
p
,
&
pVariant
->
nLen
);
toBinary
(
pVariant
,
&
p
,
&
pVariant
->
nLen
);
}
else
{
}
else
{
strncpy
(
p
,
pVariant
->
pz
,
pVariant
->
nLen
);
strncpy
(
p
,
pVariant
->
pz
,
pVariant
->
nLen
);
...
@@ -885,14 +884,13 @@ int32_t tVariantDumpEx(tVariant *pVariant, char *payload, int16_t type, bool inc
...
@@ -885,14 +884,13 @@ int32_t tVariantDumpEx(tVariant *pVariant, char *payload, int16_t type, bool inc
}
}
break
;
break
;
}
}
case
TSDB_DATA_TYPE_NCHAR
:
case
TSDB_DATA_TYPE_NCHAR
:{
case
TSDB_DATA_TYPE_JSON_NCHAR
:{
int32_t
newlen
=
0
;
int32_t
newlen
=
0
;
if
(
!
includeLengthPrefix
)
{
if
(
!
includeLengthPrefix
)
{
if
(
pVariant
->
nType
==
TSDB_DATA_TYPE_NULL
)
{
if
(
pVariant
->
nType
==
TSDB_DATA_TYPE_NULL
)
{
*
(
uint32_t
*
)
payload
=
TSDB_DATA_NCHAR_NULL
;
*
(
uint32_t
*
)
payload
=
TSDB_DATA_NCHAR_NULL
;
}
else
{
}
else
{
if
(
pVariant
->
nType
!=
TSDB_DATA_TYPE_NCHAR
&&
pVariant
->
nType
!=
TSDB_DATA_TYPE_JSON_NCHAR
)
{
if
(
pVariant
->
nType
!=
TSDB_DATA_TYPE_NCHAR
)
{
if
(
toNchar
(
pVariant
,
&
payload
,
&
newlen
)
!=
0
)
{
if
(
toNchar
(
pVariant
,
&
payload
,
&
newlen
)
!=
0
)
{
return
-
1
;
return
-
1
;
}
}
...
@@ -906,7 +904,7 @@ int32_t tVariantDumpEx(tVariant *pVariant, char *payload, int16_t type, bool inc
...
@@ -906,7 +904,7 @@ int32_t tVariantDumpEx(tVariant *pVariant, char *payload, int16_t type, bool inc
}
else
{
}
else
{
char
*
p
=
varDataVal
(
payload
);
char
*
p
=
varDataVal
(
payload
);
if
(
pVariant
->
nType
!=
TSDB_DATA_TYPE_NCHAR
&&
pVariant
->
nType
!=
TSDB_DATA_TYPE_JSON_NCHAR
)
{
if
(
pVariant
->
nType
!=
TSDB_DATA_TYPE_NCHAR
)
{
if
(
toNchar
(
pVariant
,
&
p
,
&
newlen
)
!=
0
)
{
if
(
toNchar
(
pVariant
,
&
p
,
&
newlen
)
!=
0
)
{
return
-
1
;
return
-
1
;
}
}
...
@@ -922,21 +920,19 @@ int32_t tVariantDumpEx(tVariant *pVariant, char *payload, int16_t type, bool inc
...
@@ -922,21 +920,19 @@ int32_t tVariantDumpEx(tVariant *pVariant, char *payload, int16_t type, bool inc
break
;
break
;
}
}
// case TSDB_DATA_TYPE_JSON_BINARY:
case
TSDB_DATA_TYPE_JSON_BINARY
:
// case TSDB_DATA_TYPE_JSON_NCHAR:{
case
TSDB_DATA_TYPE_JSON_NCHAR
:{
// if (pVariant->nType == TSDB_DATA_TYPE_NULL) {
if
(
pVariant
->
nType
==
TSDB_DATA_TYPE_NULL
)
{
// *(int8_t *)payload = TSDB_DATA_TINYINT_NULL;
//*(int8_t *)payload = TSDB_DATA_TINYINT_NULL;
// } else if (pVariant->nType == TSDB_DATA_TYPE_BINARY){
}
else
if
(
pVariant
->
nType
==
TSDB_DATA_TYPE_BINARY
){
// *((int8_t *)payload) = TSDB_DATA_BINARY_PLACEHOLDER;
//*((int8_t *)payload) = TSDB_DATA_BINARY_PLACEHOLDER;
// } else if (pVariant->nType == TSDB_DATA_TYPE_JSON_BINARY){ // select * from stable, set tag type to json,from setTagValue/tag_project_function
}
else
if
(
IS_JSON_DATA_TYPE
(
pVariant
->
nType
)){
// select * from stable, set tag type to json,from setTagValue/tag_project_function
// memcpy(payload, pVariant->pz, pVariant->nLen);
memcpy
(
payload
,
pVariant
->
pz
,
pVariant
->
nLen
);
// } else if(pVariant->nType == TSDB_DATA_TYPE_JSON_NCHAR){
}
else
{
// memcpy(payload, pVariant->wpz, pVariant->nLen);
return
-
1
;
// }else {
}
// return -1;
break
;
// }
}
// break;
// }
}
}
return
0
;
return
0
;
...
...
src/query/src/qAggMain.c
浏览文件 @
91c750e2
...
@@ -2740,11 +2740,8 @@ static void tag_project_function(SQLFunctionCtx *pCtx) {
...
@@ -2740,11 +2740,8 @@ static void tag_project_function(SQLFunctionCtx *pCtx) {
assert
(
pCtx
->
inputBytes
==
pCtx
->
outputBytes
);
assert
(
pCtx
->
inputBytes
==
pCtx
->
outputBytes
);
if
(
IS_JSON_DATA_TYPE
(
pCtx
->
outputType
))
{
tVariantDump
(
&
pCtx
->
tag
,
pCtx
->
pOutput
,
pCtx
->
outputType
,
false
);
}
else
{
tVariantDump
(
&
pCtx
->
tag
,
pCtx
->
pOutput
,
pCtx
->
outputType
,
true
);
tVariantDump
(
&
pCtx
->
tag
,
pCtx
->
pOutput
,
pCtx
->
outputType
,
true
);
}
char
*
data
=
pCtx
->
pOutput
;
char
*
data
=
pCtx
->
pOutput
;
pCtx
->
pOutput
+=
pCtx
->
outputBytes
;
pCtx
->
pOutput
+=
pCtx
->
outputBytes
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录