Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
dfdeb7e0
T
TDengine
项目概览
慢慢CG
/
TDengine
与 Fork 源项目一致
Fork自
taosdata / TDengine
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
dfdeb7e0
编写于
3月 23, 2021
作者:
sangshuduo
提交者:
GitHub
3月 23, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-3431] <fix>: fix taosdemo cmdline incorrect arguments. (#5536)
Co-authored-by:
N
Shuduo Sang
<
sdsang@taosdata.com
>
上级
38a8cb7a
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
24 addition
and
25 deletion
+24
-25
src/kit/taosdemo/taosdemo.c
src/kit/taosdemo/taosdemo.c
+21
-22
tests/pytest/tools/taosdemoTest.py
tests/pytest/tools/taosdemoTest.py
+1
-1
tests/pytest/tools/taosdemoTest2.py
tests/pytest/tools/taosdemoTest2.py
+1
-1
tests/pytest/tools/taosdemoTestWithoutMetric.py
tests/pytest/tools/taosdemoTestWithoutMetric.py
+1
-1
未找到文件。
src/kit/taosdemo/taosdemo.c
浏览文件 @
dfdeb7e0
...
...
@@ -523,8 +523,8 @@ SArguments g_args = {
1
,
// replica
"t"
,
// tb_prefix
NULL
,
// sqlFile
false
,
// use_metric
false
,
// insert_only
true
,
// use_metric
true
,
// insert_only
false
,
// debug_print
false
,
// verbose_print
false
,
// performance statistic print
...
...
@@ -614,7 +614,7 @@ static void printHelp() {
printf
(
"%s%s%s%s
\n
"
,
indent
,
"-m"
,
indent
,
"Table prefix name. Default is 't'."
);
printf
(
"%s%s%s%s
\n
"
,
indent
,
"-s"
,
indent
,
"The select sql file."
);
printf
(
"%s%s%s%s
\n
"
,
indent
,
"-
M"
,
indent
,
"Use metric
flag."
);
printf
(
"%s%s%s%s
\n
"
,
indent
,
"-
N"
,
indent
,
"Use normal table
flag."
);
printf
(
"%s%s%s%s
\n
"
,
indent
,
"-o"
,
indent
,
"Direct output to the named file. Default is './output.txt'."
);
printf
(
"%s%s%s%s
\n
"
,
indent
,
"-q"
,
indent
,
...
...
@@ -742,10 +742,10 @@ static void parse_args(int argc, char *argv[], SArguments *arguments) {
arguments
->
len_of_binary
=
atoi
(
argv
[
++
i
]);
}
else
if
(
strcmp
(
argv
[
i
],
"-m"
)
==
0
)
{
arguments
->
tb_prefix
=
argv
[
++
i
];
}
else
if
(
strcmp
(
argv
[
i
],
"-
M
"
)
==
0
)
{
arguments
->
use_metric
=
tru
e
;
}
else
if
(
strcmp
(
argv
[
i
],
"-
N
"
)
==
0
)
{
arguments
->
use_metric
=
fals
e
;
}
else
if
(
strcmp
(
argv
[
i
],
"-x"
)
==
0
)
{
arguments
->
insert_only
=
tru
e
;
arguments
->
insert_only
=
fals
e
;
}
else
if
(
strcmp
(
argv
[
i
],
"-y"
)
==
0
)
{
arguments
->
answer_yes
=
true
;
}
else
if
(
strcmp
(
argv
[
i
],
"-g"
)
==
0
)
{
...
...
@@ -2576,7 +2576,7 @@ static int startMultiThreadCreateChildTable(
t_info
->
ntables
=
i
<
b
?
a
+
1
:
a
;
t_info
->
end_table_to
=
i
<
b
?
startFrom
+
a
:
startFrom
+
a
-
1
;
startFrom
=
t_info
->
end_table_to
+
1
;
t_info
->
use_metric
=
1
;
t_info
->
use_metric
=
true
;
t_info
->
cols
=
cols
;
t_info
->
minDelay
=
INT16_MAX
;
pthread_create
(
pids
+
i
,
NULL
,
createTable
,
t_info
);
...
...
@@ -2597,7 +2597,6 @@ static int startMultiThreadCreateChildTable(
return
0
;
}
static
void
createChildTables
()
{
char
tblColsBuf
[
MAX_SQL_SIZE
];
int
len
;
...
...
tests/pytest/tools/taosdemoTest.py
浏览文件 @
dfdeb7e0
...
...
@@ -51,7 +51,7 @@ class TDTestCase:
else
:
tdLog
.
info
(
"taosd found in %s"
%
buildPath
)
binPath
=
buildPath
+
"/build/bin/"
os
.
system
(
"%staosdemo -y -
M -t %d -n %d -x
"
%
os
.
system
(
"%staosdemo -y -
t %d -n %d
"
%
(
binPath
,
self
.
numberOfTables
,
self
.
numberOfRecords
))
tdSql
.
execute
(
"use test"
)
...
...
tests/pytest/tools/taosdemoTest2.py
浏览文件 @
dfdeb7e0
...
...
@@ -31,7 +31,7 @@ class TDTestCase:
def
insertDataAndAlterTable
(
self
,
threadID
):
if
(
threadID
==
0
):
os
.
system
(
"taosdemo -
M -y -t %d -n %d -x
"
%
os
.
system
(
"taosdemo -
y -t %d -n %d
"
%
(
self
.
numberOfTables
,
self
.
numberOfRecords
))
if
(
threadID
==
1
):
time
.
sleep
(
2
)
...
...
tests/pytest/tools/taosdemoTestWithoutMetric.py
浏览文件 @
dfdeb7e0
...
...
@@ -50,7 +50,7 @@ class TDTestCase:
else
:
tdLog
.
info
(
"taosd found in %s"
%
buildPath
)
binPath
=
buildPath
+
"/build/bin/"
os
.
system
(
"%staosdemo -
y -t %d -n %d -x
"
%
os
.
system
(
"%staosdemo -
N -y -t %d -n %d
"
%
(
binPath
,
self
.
numberOfTables
,
self
.
numberOfRecords
))
tdSql
.
query
(
"show databases"
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录