Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
0b54133a
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看板
提交
0b54133a
编写于
11月 23, 2021
作者:
wmmhello
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
append json field after inter field for [change json type with qid return logic]
上级
35801b0d
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
13 addition
and
5 deletion
+13
-5
src/client/inc/tsclient.h
src/client/inc/tsclient.h
+1
-0
src/client/src/tscServer.c
src/client/src/tscServer.c
+4
-3
src/client/src/tscSql.c
src/client/src/tscSql.c
+6
-0
src/client/src/tscUtil.c
src/client/src/tscUtil.c
+2
-2
未找到文件。
src/client/inc/tsclient.h
浏览文件 @
0b54133a
...
...
@@ -80,6 +80,7 @@ typedef struct SInternalField {
TAOS_FIELD
field
;
bool
visible
;
SExprInfo
*
pExpr
;
TAOS_FIELD
fieldJson
;
// for tag json
}
SInternalField
;
typedef
struct
SParamInfo
{
...
...
src/client/src/tscServer.c
浏览文件 @
0b54133a
...
...
@@ -2655,12 +2655,13 @@ static void updateFieldForJson(SSqlObj *pSql, SQueryTableRsp *pQueryAttr){
SInternalField
*
pField
=
tscFieldInfoGetInternalField
(
pFieldInfo
,
i
);
if
(
pField
->
field
.
type
==
TSDB_DATA_TYPE_JSON
)
{
pField
->
fieldJson
.
type
=
TSDB_DATA_TYPE_JSON
;
for
(
int
k
=
0
;
k
<
pQueryAttr
->
tJsonSchLen
;
++
k
)
{
if
(
strncmp
(
pField
->
field
.
name
,
pQueryAttr
->
tagJsonSchema
[
k
].
name
,
TSDB_MAX_JSON_KEY_LEN
)
==
0
)
{
pField
->
field
.
type
=
pQueryAttr
->
tagJsonSchema
[
k
].
type
;
pField
->
field
.
bytes
=
TYPE_BYTES
[
pField
->
field
.
type
];
pField
->
field
Json
.
type
=
pQueryAttr
->
tagJsonSchema
[
k
].
type
;
pField
->
field
Json
.
bytes
=
TYPE_BYTES
[
pField
->
field
.
type
];
tscDebug
(
"0x%"
PRIx64
" change json type %s:%s to %d"
,
pSql
->
self
,
pField
->
field
.
name
,
pQueryAttr
->
tagJsonSchema
[
k
].
name
,
pField
->
field
.
type
);
pField
->
field
Json
.
type
);
break
;
}
}
...
...
src/client/src/tscSql.c
浏览文件 @
0b54133a
...
...
@@ -439,6 +439,12 @@ TAOS_FIELD *taos_fetch_fields(TAOS_RES *res) {
if
(
pField
->
visible
)
{
f
[
j
]
=
pField
->
field
;
if
(
f
[
j
].
type
==
TSDB_DATA_TYPE_JSON
){
f
[
j
].
type
=
pField
->
fieldJson
.
type
;
if
(
!
IS_VAR_DATA_TYPE
(
f
[
j
].
type
)
&&
f
[
j
].
type
!=
TSDB_DATA_TYPE_JSON
){
f
[
j
].
bytes
=
pField
->
fieldJson
.
bytes
;
}
}
// revise the length for binary and nchar fields
if
(
f
[
j
].
type
==
TSDB_DATA_TYPE_BINARY
)
{
f
[
j
].
bytes
-=
VARSTR_HEADER_SIZE
;
...
...
src/client/src/tscUtil.c
浏览文件 @
0b54133a
...
...
@@ -2247,7 +2247,7 @@ SInternalField* tscFieldInfoAppend(SFieldInfo* pFieldInfo, TAOS_FIELD* pField) {
assert
(
pFieldInfo
!=
NULL
);
pFieldInfo
->
numOfOutput
++
;
struct
SInternalField
info
=
{
.
pExpr
=
NULL
,
.
visible
=
true
};
struct
SInternalField
info
=
{
.
pExpr
=
NULL
,
.
visible
=
true
,
.
fieldJson
=
{
0
}
};
info
.
field
=
*
pField
;
return
taosArrayPush
(
pFieldInfo
->
internalField
,
&
info
);
...
...
@@ -2255,7 +2255,7 @@ SInternalField* tscFieldInfoAppend(SFieldInfo* pFieldInfo, TAOS_FIELD* pField) {
SInternalField
*
tscFieldInfoInsert
(
SFieldInfo
*
pFieldInfo
,
int32_t
index
,
TAOS_FIELD
*
field
)
{
pFieldInfo
->
numOfOutput
++
;
struct
SInternalField
info
=
{
.
pExpr
=
NULL
,
.
visible
=
true
};
struct
SInternalField
info
=
{
.
pExpr
=
NULL
,
.
visible
=
true
,
.
fieldJson
=
{
0
}
};
info
.
field
=
*
field
;
return
taosArrayInsert
(
pFieldInfo
->
internalField
,
index
,
&
info
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录