Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
a868ed48
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1185
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,发现更多精彩内容 >>
提交
a868ed48
编写于
6月 25, 2023
作者:
K
kailixu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: use max column length
上级
afa18610
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
10 addition
and
5 deletion
+10
-5
source/client/src/clientImpl.c
source/client/src/clientImpl.c
+10
-5
未找到文件。
source/client/src/clientImpl.c
浏览文件 @
a868ed48
...
...
@@ -1699,6 +1699,7 @@ static int32_t estimateJsonLen(SReqResultInfo* pResultInfo, int32_t numOfCols, i
len
+=
lenTmp
;
pStart
+=
lenTmp
;
int32_t
estimateColLen
=
0
;
for
(
int32_t
j
=
0
;
j
<
numOfRows
;
++
j
)
{
if
(
offset
[
j
]
==
-
1
)
{
continue
;
...
...
@@ -1708,20 +1709,21 @@ static int32_t estimateJsonLen(SReqResultInfo* pResultInfo, int32_t numOfCols, i
int32_t
jsonInnerType
=
*
data
;
char
*
jsonInnerData
=
data
+
CHAR_BYTES
;
if
(
jsonInnerType
==
TSDB_DATA_TYPE_NULL
)
{
l
en
+=
(
VARSTR_HEADER_SIZE
+
strlen
(
TSDB_DATA_NULL_STR_L
));
estimateColL
en
+=
(
VARSTR_HEADER_SIZE
+
strlen
(
TSDB_DATA_NULL_STR_L
));
}
else
if
(
tTagIsJson
(
data
))
{
l
en
+=
(
VARSTR_HEADER_SIZE
+
((
const
STag
*
)(
data
))
->
len
);
estimateColL
en
+=
(
VARSTR_HEADER_SIZE
+
((
const
STag
*
)(
data
))
->
len
);
}
else
if
(
jsonInnerType
==
TSDB_DATA_TYPE_NCHAR
)
{
// value -> "value"
l
en
+=
varDataTLen
(
jsonInnerData
)
+
CHAR_BYTES
*
2
;
estimateColL
en
+=
varDataTLen
(
jsonInnerData
)
+
CHAR_BYTES
*
2
;
}
else
if
(
jsonInnerType
==
TSDB_DATA_TYPE_DOUBLE
)
{
l
en
+=
(
VARSTR_HEADER_SIZE
+
32
);
estimateColL
en
+=
(
VARSTR_HEADER_SIZE
+
32
);
}
else
if
(
jsonInnerType
==
TSDB_DATA_TYPE_BOOL
)
{
l
en
+=
(
VARSTR_HEADER_SIZE
+
5
);
estimateColL
en
+=
(
VARSTR_HEADER_SIZE
+
5
);
}
else
{
tscError
(
"estimateJsonLen error: invalid type:%d"
,
jsonInnerType
);
return
-
1
;
}
}
len
+=
TMAX
(
colLen
,
estimateColLen
);
}
else
if
(
IS_VAR_DATA_TYPE
(
pResultInfo
->
fields
[
i
].
type
))
{
int32_t
lenTmp
=
numOfRows
*
sizeof
(
int32_t
);
len
+=
(
lenTmp
+
colLen
);
...
...
@@ -1793,6 +1795,9 @@ static int32_t doConvertJson(SReqResultInfo* pResultInfo, int32_t numOfCols, int
tscError
(
"doConvertJson error: colLen:%d >= dataLen:%d"
,
colLen
,
dataLen
);
return
TSDB_CODE_TSC_INTERNAL_ERROR
;
}
if
(
colLen
<
dataLen
)
if
(
pResultInfo
->
fields
[
i
].
type
==
TSDB_DATA_TYPE_JSON
)
{
int32_t
*
offset
=
(
int32_t
*
)
pStart
;
int32_t
*
offset1
=
(
int32_t
*
)
pStart1
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录