Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
8d62e8dd
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看板
提交
8d62e8dd
编写于
3月 13, 2021
作者:
sangshuduo
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-3197] <fix>: fix coverity scan issues.
上级
e30909d7
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
14 addition
and
13 deletion
+14
-13
src/kit/taosdemo/taosdemo.c
src/kit/taosdemo/taosdemo.c
+14
-13
未找到文件。
src/kit/taosdemo/taosdemo.c
浏览文件 @
8d62e8dd
...
...
@@ -4015,7 +4015,9 @@ static void syncWriteForNumberOfTblInOneSql(
int
insert_interval
=
superTblInfo
?
superTblInfo
->
insertInterval
:
g_args
.
insert_interval
;
int64_t
st
=
0
;
int64_t
et
=
0xffffffff
;
for
(
int
i
=
0
;
i
<
superTblInfo
->
insertRows
;)
{
int64_t
insertRows
=
(
superTblInfo
)
?
superTblInfo
->
insertRows
:
g_args
.
num_of_DPT
;
for
(
int
i
=
0
;
i
<
insertRows
;)
{
int32_t
tbl_id
=
0
;
for
(
int
tableSeq
=
winfo
->
start_table_id
;
tableSeq
<=
winfo
->
end_table_id
;
)
{
int64_t
start_time
=
0
;
...
...
@@ -4311,7 +4313,7 @@ static int prepareSampleDataForSTable(SSuperTable *superTblInfo) {
int
ret
=
readSampleFromCsvFileToMem
(
superTblInfo
);
if
(
0
!=
ret
)
{
tmfree
(
s
uperTblInfo
->
s
ampleDataBuf
);
tmfree
(
sampleDataBuf
);
return
-
1
;
}
}
...
...
@@ -4376,7 +4378,6 @@ static int generateDataBuffer(int32_t tableSeq,
int
childTblCount
;
if
(
superTblInfo
&&
(
superTblInfo
->
childTblOffset
>
0
))
{
// TODO
// select tbname from stb limit 1 offset tableSeq
getChildNameOfSuperTableWithLimitAndOffset
(
pThreadInfo
->
taos
,
pThreadInfo
->
db_name
,
superTblInfo
->
sTblName
,
...
...
@@ -4436,7 +4437,7 @@ static int generateDataBuffer(int32_t tableSeq,
}
}
else
{
pstr
+=
snprintf
(
pstr
,
(
superTblInfo
?
superTblInfo
->
maxSqlLen
:
g_args
.
max_sql_len
)
,
g_args
.
max_sql_len
,
"insert into %s.%s values"
,
pThreadInfo
->
db_name
,
pChildTblName
);
...
...
@@ -4521,6 +4522,8 @@ static int generateDataBuffer(int32_t tableSeq,
break
;
}
free
(
pChildTblName
);
return
k
;
}
...
...
@@ -4537,6 +4540,13 @@ static void* syncWrite(void *sarg) {
threadInfo
*
winfo
=
(
threadInfo
*
)
sarg
;
SSuperTable
*
superTblInfo
=
winfo
->
superTblInfo
;
char
*
buffer
=
calloc
(
superTblInfo
?
superTblInfo
->
maxSqlLen
:
g_args
.
max_sql_len
,
1
);
if
(
NULL
==
buffer
)
{
fprintf
(
stderr
,
"Failed to alloc %d Bytes, reason:%s
\n
"
,
superTblInfo
?
superTblInfo
->
maxSqlLen
:
g_args
.
max_sql_len
,
strerror
(
errno
));
return
NULL
;
}
if
(
superTblInfo
)
{
if
(
0
!=
prepareSampleDataForSTable
(
superTblInfo
))
...
...
@@ -4551,15 +4561,6 @@ static void* syncWrite(void *sarg) {
int
samplePos
=
0
;
char
*
buffer
=
calloc
(
superTblInfo
?
superTblInfo
->
maxSqlLen
:
g_args
.
max_sql_len
,
1
);
if
(
NULL
==
buffer
)
{
fprintf
(
stderr
,
"Failed to alloc %d Bytes, reason:%s
\n
"
,
superTblInfo
->
maxSqlLen
,
strerror
(
errno
));
tmfree
(
superTblInfo
->
sampleDataBuf
);
return
NULL
;
}
int64_t
lastPrintTime
=
taosGetTimestampMs
();
int64_t
startTs
=
taosGetTimestampUs
();
int64_t
endTs
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录