Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
fcae1ef2
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看板
未验证
提交
fcae1ef2
编写于
3月 16, 2021
作者:
H
haojun Liao
提交者:
GitHub
3月 16, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #5448 from taosdata/release/s117
Release/s117
上级
91b5af2c
d99b2bed
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
16 addition
and
4 deletion
+16
-4
src/plugins/http/src/httpParser.c
src/plugins/http/src/httpParser.c
+3
-1
src/query/src/qExecutor.c
src/query/src/qExecutor.c
+13
-3
未找到文件。
src/plugins/http/src/httpParser.c
浏览文件 @
fcae1ef2
...
...
@@ -110,7 +110,7 @@ static void httpCleanupString(HttpString *str) {
static
int32_t
httpAppendString
(
HttpString
*
str
,
const
char
*
s
,
int32_t
len
)
{
if
(
str
->
size
==
0
)
{
str
->
pos
=
0
;
str
->
size
=
64
;
str
->
size
=
len
+
1
;
str
->
str
=
malloc
(
str
->
size
);
}
else
if
(
str
->
pos
+
len
+
1
>=
str
->
size
)
{
str
->
size
+=
len
;
...
...
@@ -715,10 +715,12 @@ static int32_t httpParserOnVersion(HttpParser *parser, HTTP_PARSER_STATE state,
if
(
parser
->
method
)
{
ok
=
httpOnRequestLine
(
parser
,
parser
->
method
,
parser
->
target
,
parser
->
version
);
/*
if (parser->target) {
free(parser->target);
parser->target = NULL;
}
*/
}
httpClearString
(
&
parser
->
str
);
...
...
src/query/src/qExecutor.c
浏览文件 @
fcae1ef2
...
...
@@ -2747,7 +2747,10 @@ static void doSetTagValueInParam(void* pTable, int32_t tagColId, tVariant *tag,
}
if
(
type
==
TSDB_DATA_TYPE_BINARY
||
type
==
TSDB_DATA_TYPE_NCHAR
)
{
tVariantCreateFromBinary
(
tag
,
varDataVal
(
val
),
varDataLen
(
val
),
type
);
int32_t
maxLen
=
bytes
-
VARSTR_HEADER_SIZE
;
int32_t
len
=
(
varDataLen
(
val
)
>
maxLen
)
?
maxLen
:
varDataLen
(
val
);
tVariantCreateFromBinary
(
tag
,
varDataVal
(
val
),
len
,
type
);
//tVariantCreateFromBinary(tag, varDataVal(val), varDataLen(val), type);
}
else
{
tVariantCreateFromBinary
(
tag
,
val
,
bytes
,
type
);
}
...
...
@@ -6539,8 +6542,15 @@ static void doSetTagValueToResultBuf(char* output, const char* val, int16_t type
return
;
}
if
(
type
==
TSDB_DATA_TYPE_BINARY
||
type
==
TSDB_DATA_TYPE_NCHAR
)
{
memcpy
(
output
,
val
,
varDataTLen
(
val
));
if
(
IS_VAR_DATA_TYPE
(
type
))
{
// Binary data overflows for sort of unknown reasons. Let trim the overflow data
if
(
varDataTLen
(
val
)
>
bytes
)
{
int32_t
len
=
bytes
-
VARSTR_HEADER_SIZE
;
// remain available space
memcpy
(
varDataVal
(
output
),
varDataVal
(
val
),
len
);
varDataSetLen
(
output
,
len
);
}
else
{
varDataCopy
(
output
,
val
);
}
}
else
{
memcpy
(
output
,
val
,
bytes
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录