Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
0b7a6257
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看板
提交
0b7a6257
编写于
7月 23, 2021
作者:
H
happyguoxy
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-5213]<test>:test 4096 columns with taosdemo
上级
07bf3966
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
29 addition
and
31 deletion
+29
-31
tests/pytest/tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.py
.../tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.py
+29
-31
未找到文件。
tests/pytest/tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.py
浏览文件 @
0b7a6257
...
...
@@ -13,6 +13,7 @@
import
sys
import
os
import
time
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
...
...
@@ -50,29 +51,30 @@ class TDTestCase:
#-N:regular table -d:database name -t:table num -n:rows num per table -l:col num -y:force
#regular old && new
os
.
system
(
"%staosdemo -N -d regular_old -t 1000 -n 10 -l 1023 -y"
%
binPath
)
startTime
=
time
.
time
()
os
.
system
(
"%staosdemo -N -d regular_old -t 1 -n 10 -l 1023 -y"
%
binPath
)
tdSql
.
execute
(
"use regular_old"
)
tdSql
.
query
(
"show tables;"
)
tdSql
.
checkRows
(
1
000
)
tdSql
.
checkRows
(
1
)
tdSql
.
query
(
"select * from d0;"
)
tdSql
.
checkCols
(
1024
)
tdSql
.
query
(
"describe d0;"
)
tdSql
.
checkRows
(
1024
)
os
.
system
(
"%staosdemo -N -d regular_new -t 1
000
-n 10 -l 4095 -y"
%
binPath
)
os
.
system
(
"%staosdemo -N -d regular_new -t 1 -n 10 -l 4095 -y"
%
binPath
)
tdSql
.
execute
(
"use regular_new"
)
tdSql
.
query
(
"show tables;"
)
tdSql
.
checkRows
(
1
000
)
tdSql
.
checkRows
(
1
)
tdSql
.
query
(
"select * from d0;"
)
tdSql
.
checkCols
(
4096
)
tdSql
.
query
(
"describe d0;"
)
tdSql
.
checkRows
(
4096
)
#super table -d:database name -t:table num -n:rows num per table -l:col num -y:force
os
.
system
(
"%staosdemo -d super_old -t 1
000
-n 10 -l 1021 -y"
%
binPath
)
os
.
system
(
"%staosdemo -d super_old -t 1 -n 10 -l 1021 -y"
%
binPath
)
tdSql
.
execute
(
"use super_old"
)
tdSql
.
query
(
"show tables;"
)
tdSql
.
checkRows
(
1
000
)
tdSql
.
checkRows
(
1
)
tdSql
.
query
(
"select * from meters;"
)
tdSql
.
checkCols
(
1024
)
tdSql
.
query
(
"select * from d0;"
)
...
...
@@ -82,10 +84,10 @@ class TDTestCase:
tdSql
.
query
(
"describe d0;"
)
tdSql
.
checkRows
(
1024
)
os
.
system
(
"%staosdemo -d super_new -t 1
000
-n 10 -l 4093 -y"
%
binPath
)
os
.
system
(
"%staosdemo -d super_new -t 1 -n 10 -l 4093 -y"
%
binPath
)
tdSql
.
execute
(
"use super_new"
)
tdSql
.
query
(
"show tables;"
)
tdSql
.
checkRows
(
1
000
)
tdSql
.
checkRows
(
1
)
tdSql
.
query
(
"select * from meters;"
)
tdSql
.
checkCols
(
4096
)
tdSql
.
query
(
"select * from d0;"
)
...
...
@@ -100,33 +102,29 @@ class TDTestCase:
tdSql
.
query
(
"describe stb_new1_1;"
)
tdSql
.
checkRows
(
4096
)
tdLog
.
info
(
"stop dnode to commit data to disk"
)
tdDnodes
.
stop
(
1
)
tdDnodes
.
start
(
1
)
# insert: create one or mutiple tables per sql and insert multiple rows per sql
# test case for https://jira.taosdata.com:18080/browse/TD-5213
os
.
system
(
"%staosdemo -f tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.json -y "
%
binPath
)
tdSql
.
execute
(
"use json"
)
tdSql
.
query
(
"select count (tbname) from stb_old"
)
tdSql
.
checkData
(
0
,
0
,
1
0
)
tdSql
.
checkData
(
0
,
0
,
1
)
tdSql
.
query
(
"select * from stb_old"
)
tdSql
.
checkRows
(
10
00
)
tdSql
.
checkRows
(
10
)
tdSql
.
checkCols
(
1024
)
tdSql
.
query
(
"select count (tbname) from stb_new"
)
tdSql
.
checkData
(
0
,
0
,
1
0
)
tdSql
.
checkData
(
0
,
0
,
1
)
tdSql
.
query
(
"select * from stb_new"
)
tdSql
.
checkRows
(
10
00
)
tdSql
.
checkRows
(
10
)
tdSql
.
checkCols
(
4096
)
tdSql
.
query
(
"describe stb_new;"
)
tdSql
.
checkRows
(
4096
)
tdSql
.
query
(
"select * from stb_new_
1
"
)
tdSql
.
checkRows
(
10
0
)
tdSql
.
query
(
"select * from stb_new_
0
"
)
tdSql
.
checkRows
(
10
)
tdSql
.
checkCols
(
4091
)
tdSql
.
query
(
"describe stb_new_
1
;"
)
tdSql
.
query
(
"describe stb_new_
0
;"
)
tdSql
.
checkRows
(
4096
)
tdSql
.
execute
(
"create table stb_new1_1 using stb_new tags(1,2,3,4,5)"
)
tdSql
.
query
(
"select * from stb_new1_1"
)
...
...
@@ -135,34 +133,34 @@ class TDTestCase:
tdSql
.
checkRows
(
4096
)
tdSql
.
query
(
"select count (tbname) from stb_mix"
)
tdSql
.
checkData
(
0
,
0
,
1
0
)
tdSql
.
checkData
(
0
,
0
,
1
)
tdSql
.
query
(
"select * from stb_mix"
)
tdSql
.
checkRows
(
10
00
)
tdSql
.
checkRows
(
10
)
tdSql
.
checkCols
(
4096
)
tdSql
.
query
(
"describe stb_mix;"
)
tdSql
.
checkRows
(
4096
)
tdSql
.
query
(
"select * from stb_mix_
1
"
)
tdSql
.
checkRows
(
10
0
)
tdSql
.
query
(
"select * from stb_mix_
0
"
)
tdSql
.
checkRows
(
10
)
tdSql
.
checkCols
(
4092
)
tdSql
.
query
(
"describe stb_mix_
1
;"
)
tdSql
.
query
(
"describe stb_mix_
0
;"
)
tdSql
.
checkRows
(
4096
)
tdSql
.
query
(
"select count (tbname) from stb_excel"
)
tdSql
.
checkData
(
0
,
0
,
1
0
)
tdSql
.
checkData
(
0
,
0
,
1
)
tdSql
.
query
(
"select * from stb_excel"
)
tdSql
.
checkRows
(
10
00
)
tdSql
.
checkRows
(
10
)
tdSql
.
checkCols
(
4096
)
tdSql
.
query
(
"describe stb_excel;"
)
tdSql
.
checkRows
(
4096
)
tdSql
.
query
(
"select * from stb_excel_
1
"
)
tdSql
.
checkRows
(
10
0
)
tdSql
.
query
(
"select * from stb_excel_
0
"
)
tdSql
.
checkRows
(
10
)
tdSql
.
checkCols
(
4092
)
tdSql
.
query
(
"describe stb_excel_
1
;"
)
tdSql
.
query
(
"describe stb_excel_
0
;"
)
tdSql
.
checkRows
(
4096
)
endTime
=
time
.
time
()
print
(
"total time %ds"
%
(
endTime
-
startTime
))
os
.
system
(
"rm -rf tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.py.sql"
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录