Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
7dac9977
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看板
未验证
提交
7dac9977
编写于
9月 15, 2021
作者:
H
Hui Li
提交者:
GitHub
9月 15, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #7911 from taosdata/test/TD-6635-m
[TD-6635]<test>:modify python file about ts = 1600000**
上级
afe770aa
00b8a085
变更
8
显示空白变更内容
内联
并排
Showing
8 changed file
with
21 addition
and
14 deletion
+21
-14
tests/pytest/import_merge/import_update_0.py
tests/pytest/import_merge/import_update_0.py
+1
-1
tests/pytest/import_merge/import_update_1.py
tests/pytest/import_merge/import_update_1.py
+1
-1
tests/pytest/import_merge/import_update_2.py
tests/pytest/import_merge/import_update_2.py
+1
-1
tests/pytest/query/nestedQuery/nestedQuery.py
tests/pytest/query/nestedQuery/nestedQuery.py
+8
-7
tests/pytest/query/nestquery_last_row.py
tests/pytest/query/nestquery_last_row.py
+5
-1
tests/pytest/query/operator_cost.py
tests/pytest/query/operator_cost.py
+2
-1
tests/pytest/tools/taosdemoAllTest/TD-5213/insert4096columns_not_use_taosdemo.py
...demoAllTest/TD-5213/insert4096columns_not_use_taosdemo.py
+2
-1
tests/pytest/tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.json
...ools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.json
+1
-1
未找到文件。
tests/pytest/import_merge/import_update_0.py
浏览文件 @
7dac9977
...
...
@@ -55,7 +55,7 @@ class TDTestCase:
tdSql
.
execute
(
'''drop database if exists test_updata_0 ;'''
)
# update 0 不更新 ; update 1 覆盖更新 ;update 2 合并更新
tdLog
.
info
(
"========== test database updata = 0 =========="
)
tdSql
.
execute
(
'''create database test_updata_0 update 0 minrows 10 maxrows 200 ;'''
)
tdSql
.
execute
(
'''create database test_updata_0 update 0 minrows 10 maxrows 200
keep 36500;
;'''
)
tdSql
.
execute
(
'''use test_updata_0;'''
)
tdSql
.
execute
(
'''create stable stable_1
(ts timestamp , q_int int , q_bigint bigint , q_smallint smallint , q_tinyint tinyint,
...
...
tests/pytest/import_merge/import_update_1.py
浏览文件 @
7dac9977
...
...
@@ -55,7 +55,7 @@ class TDTestCase:
tdSql
.
execute
(
'''drop database if exists test_updata_1 ;'''
)
# update 0 不更新 ; update 1 覆盖更新 ;update 2 合并更新
tdLog
.
info
(
"========== test database updata = 1 =========="
)
tdSql
.
execute
(
'''create database test_updata_1 update 1 minrows 10 maxrows 200 ;'''
)
tdSql
.
execute
(
'''create database test_updata_1 update 1 minrows 10 maxrows 200
keep 36500
;'''
)
tdSql
.
execute
(
'''use test_updata_1;'''
)
tdSql
.
execute
(
'''create stable stable_1
(ts timestamp , q_int int , q_bigint bigint , q_smallint smallint , q_tinyint tinyint,
...
...
tests/pytest/import_merge/import_update_2.py
浏览文件 @
7dac9977
...
...
@@ -55,7 +55,7 @@ class TDTestCase:
tdSql
.
execute
(
'''drop database if exists test_updata_2 ;'''
)
# update 0 不更新 ; update 1 覆盖更新 ;update 2 合并更新
tdLog
.
info
(
"========== test database updata = 2 =========="
)
tdSql
.
execute
(
'''create database test_updata_2 update 2 minrows 10 maxrows 200 ;'''
)
tdSql
.
execute
(
'''create database test_updata_2 update 2 minrows 10 maxrows 200
keep 36500
;'''
)
tdSql
.
execute
(
'''use test_updata_2;'''
)
tdSql
.
execute
(
'''create stable stable_1
(ts timestamp , q_int int , q_bigint bigint , q_smallint smallint , q_tinyint tinyint,
...
...
tests/pytest/query/nestedQuery/nestedQuery.py
浏览文件 @
7dac9977
...
...
@@ -29,7 +29,9 @@ class TDTestCase:
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
self
.
ts
=
1600000000000
os
.
system
(
"rm -rf query/nestedQuery/nestedQuery.py.sql"
)
now
=
time
.
time
()
self
.
ts
=
int
(
round
(
now
*
1000
))
self
.
num
=
10
self
.
fornum
=
20
...
...
@@ -464,8 +466,7 @@ class TDTestCase:
tdLog
.
info
(
sql
)
tdLog
.
info
(
len
(
sql
))
tdSql
.
query
(
sql
)
#tdSql.error(sql)
tdSql
.
checkData
(
0
,
0
,
'2020-09-13 20:26:40.000'
)
#tdSql.checkData(0,0,'2020-09-13 20:26:40.000')
tdSql
.
checkRows
(
6
*
self
.
num
)
...
...
@@ -533,7 +534,7 @@ class TDTestCase:
tdLog
.
info
(
sql
)
tdLog
.
info
(
len
(
sql
))
tdSql
.
query
(
sql
)
tdSql
.
checkData
(
0
,
0
,
'2020-09-13 20:26:40.000'
)
#
tdSql.checkData(0,0,'2020-09-13 20:26:40.000')
tdSql
.
checkRows
(
6
*
self
.
num
)
#2 select column from (select * form regular_table ) where <\>\in\and\or order by
...
...
@@ -550,7 +551,7 @@ class TDTestCase:
tdLog
.
info
(
sql
)
tdLog
.
info
(
len
(
sql
))
tdSql
.
query
(
sql
)
tdSql
.
checkData
(
0
,
0
,
'2020-09-13 20:26:40.000'
)
#
tdSql.checkData(0,0,'2020-09-13 20:26:40.000')
tdSql
.
checkRows
(
6
*
self
.
num
)
#join: select column from (select column form regular_table1,regular_table2 )where t1.ts=t2.ts and <\>\in\and\or order by
...
...
@@ -587,7 +588,7 @@ class TDTestCase:
tdLog
.
info
(
sql
)
tdLog
.
info
(
len
(
sql
))
tdSql
.
query
(
sql
)
tdSql
.
checkData
(
0
,
0
,
'2020-09-13 20:26:40.000'
)
#
tdSql.checkData(0,0,'2020-09-13 20:26:40.000')
tdSql
.
checkRows
(
6
*
self
.
num
)
# select ts,* from (select column\tag form stable1,stable2 where t1.ts = t2.ts and <\>\in\and\or order by )
...
...
@@ -686,7 +687,7 @@ class TDTestCase:
tdLog
.
info
(
sql
)
tdLog
.
info
(
len
(
sql
))
tdSql
.
query
(
sql
)
tdSql
.
checkData
(
0
,
0
,
'2020-09-13 20:26:40.000'
)
#
tdSql.checkData(0,0,'2020-09-13 20:26:40.000')
tdSql
.
checkRows
(
6
*
self
.
num
)
#5 select distinct column\tag from (select * form stable where <\>\in\and\or order by limit offset )
...
...
tests/pytest/query/nestquery_last_row.py
浏览文件 @
7dac9977
...
...
@@ -17,6 +17,8 @@ from util.log import tdLog
from
util.cases
import
tdCases
from
util.sql
import
tdSql
import
random
import
time
import
os
class
TDTestCase
:
...
...
@@ -24,7 +26,9 @@ class TDTestCase:
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
self
.
ts
=
1600000000000
os
.
system
(
"rm -rf query/nestquery_last_row.py.sql"
)
now
=
time
.
time
()
self
.
ts
=
int
(
round
(
now
*
1000
))
self
.
num
=
10
def
run
(
self
):
...
...
tests/pytest/query/operator_cost.py
浏览文件 @
7dac9977
...
...
@@ -25,7 +25,8 @@ class TDTestCase:
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
self
.
ts
=
1600000000000
now
=
time
.
time
()
self
.
ts
=
int
(
round
(
now
*
1000
))
self
.
num
=
10
def
run
(
self
):
...
...
tests/pytest/tools/taosdemoAllTest/TD-5213/insert4096columns_not_use_taosdemo.py
浏览文件 @
7dac9977
...
...
@@ -26,7 +26,8 @@ class TDTestCase:
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
self
.
ts
=
1538548685000
now
=
time
.
time
()
self
.
ts
=
int
(
round
(
now
*
1000
))
self
.
num
=
100
def
get_random_string
(
self
,
length
):
...
...
tests/pytest/tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.json
浏览文件 @
7dac9977
...
...
@@ -22,7 +22,7 @@
"cache"
:
50
,
"blocks"
:
8
,
"precision"
:
"ms"
,
"keep"
:
365
,
"keep"
:
365
00
,
"minRows"
:
100
,
"maxRows"
:
4096
,
"comp"
:
2
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录