Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
8061d185
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看板
未验证
提交
8061d185
编写于
9月 15, 2021
作者:
H
Hui Li
提交者:
GitHub
9月 15, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #7919 from taosdata/test/TD-6635-d
Test/td 6635 d
上级
50e04822
bc2c3032
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
14 addition
and
8 deletion
+14
-8
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/nestquery_last_row.py
tests/pytest/query/nestquery_last_row.py
+3
-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
+5
-2
tests/pytest/tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.json
...ools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.json
+1
-1
未找到文件。
tests/pytest/import_merge/import_update_0.py
浏览文件 @
8061d185
...
...
@@ -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
浏览文件 @
8061d185
...
...
@@ -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
浏览文件 @
8061d185
...
...
@@ -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/nestquery_last_row.py
浏览文件 @
8061d185
...
...
@@ -17,6 +17,7 @@ from util.log import tdLog
from
util.cases
import
tdCases
from
util.sql
import
tdSql
import
random
import
time
class
TDTestCase
:
...
...
@@ -24,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/query/operator_cost.py
浏览文件 @
8061d185
...
...
@@ -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
浏览文件 @
8061d185
...
...
@@ -26,7 +26,10 @@ class TDTestCase:
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
self
.
ts
=
1538548685000
os
.
system
(
"rm -rf tools/taosdemoAllTest/TD-5213/insert4096columns_not_use_taosdemo.py.sql"
)
now
=
time
.
time
()
self
.
ts
=
int
(
round
(
now
*
1000
))
self
.
num
=
100
def
get_random_string
(
self
,
length
):
...
...
@@ -691,7 +694,7 @@ class TDTestCase:
tdSql
.
query
(
"describe table_40"
)
tdSql
.
checkRows
(
4096
)
os
.
system
(
"rm -rf tools/taosdemoAllTest/TD-5213/insert4096columns_not_use_taosdemo.py.sql"
)
def
stop
(
self
):
...
...
tests/pytest/tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.json
浏览文件 @
8061d185
...
...
@@ -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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录