Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
1d7626df
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
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看板
提交
1d7626df
编写于
8月 07, 2020
作者:
B
Bomin Zhang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix several bugs related to subscribe
including: * server side crash * client side crash * server side memory leak
上级
0836c2f7
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
16 addition
and
7 deletion
+16
-7
src/client/inc/tscUtil.h
src/client/inc/tscUtil.h
+6
-0
src/client/src/tscServer.c
src/client/src/tscServer.c
+1
-1
src/client/src/tscSub.c
src/client/src/tscSub.c
+3
-0
src/query/src/qExecutor.c
src/query/src/qExecutor.c
+4
-1
src/tsdb/src/tsdbRead.c
src/tsdb/src/tsdbRead.c
+2
-5
未找到文件。
src/client/inc/tscUtil.h
浏览文件 @
1d7626df
...
...
@@ -53,12 +53,18 @@ typedef struct SParsedDataColInfo {
bool
hasVal
[
TSDB_MAX_COLUMNS
];
}
SParsedDataColInfo
;
#pragma pack(push,1)
// this struct is transfered as binary, padding two bytes to avoid
// an 'uid' whose low bytes is 0xff being recoginized as NULL,
// and set 'pack' to 1 to avoid break existing code.
typedef
struct
STidTags
{
int16_t
padding
;
int64_t
uid
;
int32_t
tid
;
int32_t
vgId
;
char
tag
[];
}
STidTags
;
#pragma pack(pop)
typedef
struct
SJoinSupporter
{
SSubqueryState
*
pState
;
...
...
src/client/src/tscServer.c
浏览文件 @
1d7626df
...
...
@@ -912,7 +912,7 @@ int tscBuildQueryMsg(SSqlObj *pSql, SSqlInfo *pInfo) {
pSql
->
cmd
.
msgType
=
TSDB_MSG_TYPE_QUERY
;
pQueryMsg
->
head
.
contLen
=
htonl
(
msgLen
);
assert
(
msgLen
+
minMsgSize
()
<=
s
ize
);
assert
(
msgLen
+
minMsgSize
()
<=
pCmd
->
allocS
ize
);
return
TSDB_CODE_SUCCESS
;
}
...
...
src/client/src/tscSub.c
浏览文件 @
1d7626df
...
...
@@ -410,6 +410,9 @@ TAOS_RES *taos_consume(TAOS_SUB *tsub) {
}
}
size_t
size
=
taosArrayGetSize
(
pSub
->
progress
)
*
sizeof
(
STableIdInfo
);
size
+=
sizeof
(
SQueryTableMsg
)
+
4096
;
tscAllocPayload
(
&
pSql
->
cmd
,
size
);
for
(
int
retry
=
0
;
retry
<
3
;
retry
++
)
{
tscRemoveFromSqlList
(
pSql
);
...
...
src/query/src/qExecutor.c
浏览文件 @
1d7626df
...
...
@@ -6549,12 +6549,15 @@ static void buildTagQueryResult(SQInfo* pQInfo) {
int32_t
i
=
pQInfo
->
tableIndex
++
;
STableQueryInfo
*
item
=
taosArrayGetP
(
pa
,
i
);
char
*
output
=
pQuery
->
sdata
[
0
]
->
data
+
i
*
rsize
;
char
*
output
=
pQuery
->
sdata
[
0
]
->
data
+
count
*
rsize
;
varDataSetLen
(
output
,
rsize
-
VARSTR_HEADER_SIZE
);
output
=
varDataVal
(
output
);
STableId
*
id
=
TSDB_TABLEID
(
item
->
pTable
);
*
(
int16_t
*
)
output
=
0
;
output
+=
sizeof
(
int16_t
);
*
(
int64_t
*
)
output
=
id
->
uid
;
// memory align problem, todo serialize
output
+=
sizeof
(
id
->
uid
);
...
...
src/tsdb/src/tsdbRead.c
浏览文件 @
1d7626df
...
...
@@ -2442,11 +2442,8 @@ void tsdbCleanupQueryHandle(TsdbQueryHandleT queryHandle) {
STableCheckInfo
*
pTableCheckInfo
=
taosArrayGet
(
pQueryHandle
->
pTableCheckInfo
,
i
);
destroyTableMemIterator
(
pTableCheckInfo
);
if
(
pTableCheckInfo
->
pDataCols
!=
NULL
)
{
taosTFree
(
pTableCheckInfo
->
pDataCols
->
buf
);
}
taosTFree
(
pTableCheckInfo
->
pDataCols
);
tdFreeDataCols
(
pTableCheckInfo
->
pDataCols
);
pTableCheckInfo
->
pDataCols
=
NULL
;
taosTFree
(
pTableCheckInfo
->
pCompInfo
);
}
taosArrayDestroy
(
pQueryHandle
->
pTableCheckInfo
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录