Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
8cb5693a
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看板
未验证
提交
8cb5693a
编写于
11月 29, 2021
作者:
Y
Yang Zhao
提交者:
GitHub
11月 29, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-11255]<fix>taosdemo cmdLine -l (#8795)
* [TD-11255]<fix>taosdemo cmdLine -l” : * modify test case
上级
563058f8
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
14 addition
and
8 deletion
+14
-8
src/kit/taosdemo/src/demoCommandOpt.c
src/kit/taosdemo/src/demoCommandOpt.c
+13
-7
tests/pytest/tools/taosdemoAllTest/TD-10539/create_taosdemo.py
.../pytest/tools/taosdemoAllTest/TD-10539/create_taosdemo.py
+1
-1
未找到文件。
src/kit/taosdemo/src/demoCommandOpt.c
浏览文件 @
8cb5693a
...
...
@@ -736,11 +736,13 @@ int parse_args(int argc, char *argv[]) {
g_args
.
columnCount
=
MAX_NUM_COLUMNS
;
}
for
(
int
col
=
DEFAULT_DATATYPE_NUM
;
col
<
g_args
.
columnCount
;
for
(
int
col
=
0
;
col
<
g_args
.
columnCount
;
col
++
)
{
if
(
g_args
.
data_type
[
col
]
==
TSDB_DATA_TYPE_NULL
)
{
g_args
.
dataType
[
col
]
=
"INT"
;
g_args
.
data_type
[
col
]
=
TSDB_DATA_TYPE_INT
;
}
}
for
(
int
col
=
g_args
.
columnCount
;
col
<
MAX_NUM_COLUMNS
;
col
++
)
{
g_args
.
dataType
[
col
]
=
NULL
;
g_args
.
data_type
[
col
]
=
TSDB_DATA_TYPE_NULL
;
...
...
@@ -830,8 +832,10 @@ int parse_args(int argc, char *argv[]) {
g_args
.
data_type
[
0
]
=
TSDB_DATA_TYPE_NULL
;
}
g_args
.
dataType
[
0
]
=
dataType
;
if
(
g_args
.
data_type
[
1
]
!=
TSDB_DATA_TYPE_INT
)
{
g_args
.
dataType
[
1
]
=
NULL
;
g_args
.
data_type
[
1
]
=
TSDB_DATA_TYPE_NULL
;
}
}
else
{
// more than one col
int
index
=
0
;
...
...
@@ -899,9 +903,11 @@ int parse_args(int argc, char *argv[]) {
token
=
strsep
(
&
running
,
","
);
if
(
index
>=
MAX_NUM_COLUMNS
)
break
;
}
if
(
g_args
.
data_type
[
index
]
!=
TSDB_DATA_TYPE_INT
)
{
g_args
.
dataType
[
index
]
=
NULL
;
g_args
.
data_type
[
index
]
=
TSDB_DATA_TYPE_NULL
;
}
}
}
else
if
((
0
==
strncmp
(
argv
[
i
],
"-w"
,
strlen
(
"-w"
)))
||
(
0
==
strncmp
(
argv
[
i
],
"--binwidth"
,
strlen
(
"--binwidth"
))))
{
...
...
tests/pytest/tools/taosdemoAllTest/TD-10539/create_taosdemo.py
浏览文件 @
8cb5693a
...
...
@@ -112,7 +112,7 @@ class TDTestCase:
tdSql
.
checkRows
(
11
)
tdSql
.
query
(
"show create table test.`%s1` ; "
%
self
.
tsdemo
)
tdSql
.
checkData
(
0
,
0
,
self
.
tsdemo
+
str
(
1
))
tdSql
.
checkData
(
0
,
1
,
"create table `%s1` (ts TIMESTAMP,c0 FLOAT,c1 INT,c2
IN
T,c3 INT,c4 INT,c5 INT,c6 INT,c7 INT,c8 INT,c9 INT)"
%
self
.
tsdemo
)
tdSql
.
checkData
(
0
,
1
,
"create table `%s1` (ts TIMESTAMP,c0 FLOAT,c1 INT,c2
FLOA
T,c3 INT,c4 INT,c5 INT,c6 INT,c7 INT,c8 INT,c9 INT)"
%
self
.
tsdemo
)
print
(
"==============drop table\stable"
)
try
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录