Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
92ab9d9d
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22017
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看板
提交
92ab9d9d
编写于
11月 13, 2021
作者:
Z
zhaoyanggh
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
arm32 compile
上级
f9893f92
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
9 addition
and
12 deletion
+9
-12
src/kit/taosdemo/inc/demo.h
src/kit/taosdemo/inc/demo.h
+1
-1
src/kit/taosdemo/src/demoInsert.c
src/kit/taosdemo/src/demoInsert.c
+7
-8
src/kit/taosdemo/src/demoOutput.c
src/kit/taosdemo/src/demoOutput.c
+1
-3
未找到文件。
src/kit/taosdemo/inc/demo.h
浏览文件 @
92ab9d9d
...
...
@@ -591,7 +591,7 @@ void setupForAnsiEscape(void);
int
taosRandom
();
int
testMetaFile
();
int
insertTestProcess
();
int
printfInsertMeta
();
void
printfInsertMeta
();
void
printfInsertMetaToFile
(
FILE
*
fp
);
void
prompt
();
void
postFreeResource
();
...
...
src/kit/taosdemo/src/demoInsert.c
浏览文件 @
92ab9d9d
...
...
@@ -2808,8 +2808,7 @@ static int execStbBindParamBatch(threadInfo *pThreadInfo, char *tableName,
param
->
buffer_type
=
data_type
;
param
->
length
=
calloc
(
1
,
sizeof
(
int32_t
)
*
thisBatch
);
if
(
param
->
length
==
NULL
)
{
errorPrint
(
"failed to allocate %"
PRIu64
" size memory
\n
"
,
sizeof
(
int32_t
)
*
thisBatch
);
errorPrint
(
"%s"
,
"failed to allocate memory
\n
"
);
return
-
1
;
}
...
...
@@ -4542,10 +4541,14 @@ int startMultiThreadInsertData(int threads, char *db_name, char *precision,
int
insertTestProcess
()
{
int32_t
code
=
-
1
;
if
(
printfInsertMeta
())
{
char
*
cmdBuffer
=
calloc
(
1
,
BUFFER_SIZE
);
if
(
NULL
==
cmdBuffer
)
{
errorPrint
(
"%s"
,
"failed to allocate memory
\n
"
);
goto
end_insert_process
;
}
printfInsertMeta
();
debugPrint
(
"%d result file: %s
\n
"
,
__LINE__
,
g_Dbs
.
resultFile
);
g_fpOfInsertResult
=
fopen
(
g_Dbs
.
resultFile
,
"a"
);
if
(
NULL
==
g_fpOfInsertResult
)
{
...
...
@@ -4564,11 +4567,7 @@ int insertTestProcess() {
}
// create database and super tables
char
*
cmdBuffer
=
calloc
(
1
,
BUFFER_SIZE
);
if
(
NULL
==
cmdBuffer
)
{
errorPrint
(
"%s"
,
"failed to allocate memory
\n
"
);
goto
end_insert_process
;
}
if
(
createDatabasesAndStables
(
cmdBuffer
))
{
goto
end_insert_process
;
}
...
...
src/kit/taosdemo/src/demoOutput.c
浏览文件 @
92ab9d9d
...
...
@@ -375,7 +375,7 @@ for any corresponding short options.\n\
Report bugs to <support@taosdata.com>.
\n
"
);
}
int
printfInsertMeta
()
{
void
printfInsertMeta
()
{
setupForAnsiEscape
();
SHOW_PARSE_RESULT_START
();
...
...
@@ -481,7 +481,6 @@ int printfInsertMeta() {
}
else
{
printf
(
"
\033
[1m
\033
[40;31m precision error: %s
\033
[0m
\n
"
,
g_Dbs
.
db
[
i
].
dbCfg
.
precision
);
return
-
1
;
}
}
...
...
@@ -635,7 +634,6 @@ int printfInsertMeta() {
SHOW_PARSE_RESULT_END
();
resetAfterAnsiEscape
();
return
0
;
}
void
printfInsertMetaToFile
(
FILE
*
fp
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录