Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
16ac4b66
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
16ac4b66
编写于
8月 08, 2020
作者:
H
Haojun Liao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[td-225] fix memory leak
上级
0836c2f7
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
25 addition
and
8 deletion
+25
-8
src/client/src/tscSystem.c
src/client/src/tscSystem.c
+2
-1
src/plugins/monitor/src/monitorMain.c
src/plugins/monitor/src/monitorMain.c
+17
-7
src/query/src/qTokenizer.c
src/query/src/qTokenizer.c
+4
-0
src/util/inc/tstoken.h
src/util/inc/tstoken.h
+2
-0
未找到文件。
src/client/src/tscSystem.c
浏览文件 @
16ac4b66
...
...
@@ -165,6 +165,7 @@ void taos_cleanup() {
tscQhandle
=
NULL
;
}
taosCleanupKeywordsTable
();
taosCloseLog
();
taosTmrCleanUp
(
tscTmr
);
...
...
src/plugins/monitor/src/monitorMain.c
浏览文件 @
16ac4b66
...
...
@@ -131,7 +131,10 @@ static void monitorInitConn(void *para, void *unused) {
}
static
void
monitorInitConnCb
(
void
*
param
,
TAOS_RES
*
result
,
int32_t
code
)
{
if
(
code
<
0
)
{
// free it firstly in any cases.
taos_free_result
(
result
);
if
(
code
!=
TSDB_CODE_SUCCESS
)
{
monitorError
(
"monitor:%p, connect to database failed, reason:%s"
,
tsMonitorConn
.
conn
,
tstrerror
(
code
));
taos_close
(
tsMonitorConn
.
conn
);
tsMonitorConn
.
conn
=
NULL
;
...
...
@@ -214,7 +217,7 @@ static void monitorInitDatabase() {
}
static
void
monitorInitDatabaseCb
(
void
*
param
,
TAOS_RES
*
result
,
int32_t
code
)
{
if
(
-
code
==
TSDB_CODE_MND_TABLE_ALREADY_EXIST
||
-
code
==
TSDB_CODE_MND_DB_ALREADY_EXIST
||
code
>=
0
)
{
if
(
code
==
TSDB_CODE_MND_TABLE_ALREADY_EXIST
||
code
==
TSDB_CODE_MND_DB_ALREADY_EXIST
||
code
>=
0
)
{
monitorDebug
(
"monitor:%p, sql success, reason:%s, %s"
,
tsMonitorConn
.
conn
,
tstrerror
(
code
),
tsMonitorConn
.
sql
);
if
(
tsMonitorConn
.
cmdIndex
==
MONITOR_CMD_CREATE_TB_LOG
)
{
monitorInfo
(
"dnode:%s is started"
,
tsLocalEp
);
...
...
@@ -226,6 +229,8 @@ static void monitorInitDatabaseCb(void *param, TAOS_RES *result, int32_t code) {
tsMonitorConn
.
state
=
MONITOR_STATE_UN_INIT
;
monitorStartSystemRetry
();
}
taos_free_result
(
result
);
}
void
monitorStopSystem
()
{
...
...
@@ -238,6 +243,8 @@ void monitorStopSystem() {
if
(
tsMonitorConn
.
timer
!=
NULL
)
{
taosTmrStopA
(
&
(
tsMonitorConn
.
timer
));
}
taos_close
(
tsMonitorConn
.
conn
);
}
void
monitorCleanUpSystem
()
{
...
...
@@ -250,13 +257,16 @@ static void monitorStartTimer() {
}
static
void
dnodeMontiorLogCallback
(
void
*
param
,
TAOS_RES
*
result
,
int32_t
code
)
{
i
f
(
code
<
0
)
{
monitorError
(
"monitor:%p, save %s failed, reason:%s"
,
tsMonitorConn
.
conn
,
(
char
*
)
param
,
tstrerror
(
code
));
}
else
if
(
code
==
0
)
{
monitorError
(
"monitor:%p, save %s failed,
affect rows:%d"
,
tsMonitorConn
.
conn
,
(
char
*
)
param
,
code
);
i
nt32_t
c
=
taos_errno
(
result
);
if
(
c
!=
TSDB_CODE_SUCCESS
)
{
monitorError
(
"monitor:%p, save %s failed,
reason:%s"
,
tsMonitorConn
.
conn
,
(
char
*
)
param
,
tstrerror
(
c
)
);
}
else
{
monitorDebug
(
"monitor:%p, save %s info success, reason:%s"
,
tsMonitorConn
.
conn
,
(
char
*
)
param
,
tstrerror
(
code
));
int32_t
rows
=
taos_affected_rows
(
result
);
monitorDebug
(
"monitor:%p, save %s succ, rows:%d"
,
tsMonitorConn
.
conn
,
(
char
*
)
param
,
rows
);
}
taos_free_result
(
result
);
}
// unit is MB
...
...
src/query/src/qTokenizer.c
浏览文件 @
16ac4b66
...
...
@@ -659,3 +659,7 @@ SSQLToken tStrGetToken(char* str, int32_t* i, bool isPrevOptr, uint32_t numOfIgn
}
bool
isKeyWord
(
const
char
*
z
,
int32_t
len
)
{
return
(
tSQLKeywordCode
((
char
*
)
z
,
len
)
!=
TK_ID
);
}
void
taosCleanupKeywordsTable
()
{
taosHashCleanup
(
KeywordHashTable
);
}
\ No newline at end of file
src/util/inc/tstoken.h
浏览文件 @
16ac4b66
...
...
@@ -182,6 +182,8 @@ static FORCE_INLINE int32_t isValidNumber(const SSQLToken* pToken) {
return
(
i
<
pToken
->
n
)
?
TK_ILLEGAL
:
type
;
}
void
taosCleanupKeywordsTable
();
#ifdef __cplusplus
}
#endif
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录