Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
ba826f20
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,发现更多精彩内容 >>
未验证
提交
ba826f20
编写于
9月 15, 2020
作者:
S
Shengliang Guan
提交者:
GitHub
9月 15, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #3520 from taosdata/xiaoping/add_test_case
fix test failures
上级
a0d8e5c8
3a58f9f4
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
9 addition
and
6 deletion
+9
-6
tests/pytest/import_merge/importToCommit.py
tests/pytest/import_merge/importToCommit.py
+1
-1
tests/pytest/tag_lite/datatype-without-alter.py
tests/pytest/tag_lite/datatype-without-alter.py
+1
-1
tests/pytest/tag_lite/datatype.py
tests/pytest/tag_lite/datatype.py
+1
-1
tests/pytest/util/sql.py
tests/pytest/util/sql.py
+6
-2
tests/script/fullGeneralSuite.sim
tests/script/fullGeneralSuite.sim
+0
-1
未找到文件。
tests/pytest/import_merge/importToCommit.py
浏览文件 @
ba826f20
...
...
@@ -33,7 +33,7 @@ class TDTestCase:
tdDnodes
.
start
(
1
)
tdSql
.
execute
(
'reset query cache'
)
tdSql
.
execute
(
'drop database if exists db'
)
tdSql
.
execute
(
'create database db cache 128
maxtables 10
'
)
tdSql
.
execute
(
'create database db cache 128'
)
tdSql
.
execute
(
'use db'
)
tdLog
.
info
(
"================= step1"
)
...
...
tests/pytest/tag_lite/datatype-without-alter.py
浏览文件 @
ba826f20
...
...
@@ -38,7 +38,7 @@ class TDTestCase:
tdLog
.
info
(
"drop database db if exits"
)
tdSql
.
execute
(
'drop database if exists db'
)
tdLog
.
info
(
"================= step1"
)
tdSql
.
execute
(
'create database db
maxtables 4
'
)
tdSql
.
execute
(
'create database db'
)
tdLog
.
sleep
(
5
)
tdSql
.
execute
(
'use db'
)
...
...
tests/pytest/tag_lite/datatype.py
浏览文件 @
ba826f20
...
...
@@ -38,7 +38,7 @@ class TDTestCase:
tdLog
.
info
(
"drop database db if exits"
)
tdSql
.
execute
(
'drop database if exists db'
)
tdLog
.
info
(
"================= step1"
)
tdSql
.
execute
(
'create database db
maxtables 4
'
)
tdSql
.
execute
(
'create database db'
)
tdLog
.
sleep
(
5
)
tdSql
.
execute
(
'use db'
)
...
...
tests/pytest/util/sql.py
浏览文件 @
ba826f20
...
...
@@ -123,8 +123,12 @@ class TDSql:
def
checkData
(
self
,
row
,
col
,
data
):
self
.
checkRowCol
(
row
,
col
)
if
str
(
self
.
queryResult
[
row
][
col
])
!=
str
(
data
):
if
isinstance
(
data
,
float
)
and
abs
(
self
.
queryResult
[
row
][
col
]
-
data
)
<=
0.000001
:
if
self
.
queryResult
[
row
][
col
]
!=
data
:
if
str
(
self
.
queryResult
[
row
][
col
])
!=
str
(
data
):
tdLog
.
info
(
"sql:%s, row:%d col:%d data:%s == expect:%s"
%
(
self
.
sql
,
row
,
col
,
self
.
queryResult
[
row
][
col
],
data
))
return
elif
isinstance
(
data
,
float
)
and
abs
(
self
.
queryResult
[
row
][
col
]
-
data
)
<=
0.000001
:
tdLog
.
info
(
"sql:%s, row:%d col:%d data:%f == expect:%f"
%
(
self
.
sql
,
row
,
col
,
self
.
queryResult
[
row
][
col
],
data
))
return
...
...
tests/script/fullGeneralSuite.sim
浏览文件 @
ba826f20
...
...
@@ -130,7 +130,6 @@ run general/parser/join.sim
run general/parser/join_multivnode.sim
run general/parser/select_with_tags.sim
run general/parser/groupby.sim
run general/parser/bug.sim
run general/parser/tags_dynamically_specifiy.sim
run general/parser/set_tag_vals.sim
#unsupport run general/parser/repeatAlter.sim
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录