Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
c0e4296d
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看板
提交
c0e4296d
编写于
6月 29, 2021
作者:
haoranc
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-4552]<test>: update testcase that compressing wal logs
上级
0be6a5a4
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
47 addition
and
2 deletion
+47
-2
tests/pytest/fulltest.sh
tests/pytest/fulltest.sh
+1
-1
tests/pytest/functions/function_irate.py
tests/pytest/functions/function_irate.py
+34
-1
tests/pytest/wal/sdbCompClusterReplica2.py
tests/pytest/wal/sdbCompClusterReplica2.py
+12
-0
未找到文件。
tests/pytest/fulltest.sh
浏览文件 @
c0e4296d
...
...
@@ -235,7 +235,7 @@ python3 ./test.py -f query/queryTscomputWithNow.py
python3 ./test.py
-f
query/computeErrorinWhere.py
python3 ./test.py
-f
query/queryTsisNull.py
python3 ./test.py
-f
query/subqueryFilter.py
#
python3 ./test.py -f query/nestedQuery/queryInterval.py
python3 ./test.py
-f
query/nestedQuery/queryInterval.py
python3 ./test.py
-f
query/queryStateWindow.py
...
...
tests/pytest/functions/function_irate.py
浏览文件 @
c0e4296d
...
...
@@ -27,6 +27,7 @@ class TDTestCase:
self
.
rowNum
=
100
self
.
ts
=
1537146000000
self
.
ts1
=
1537146000000000
self
.
ts2
=
1597146000000
def
run
(
self
):
...
...
@@ -35,6 +36,8 @@ class TDTestCase:
tdSql
.
execute
(
'''create table test(ts timestamp, col1 tinyint, col2 smallint, col3 int, col4 bigint, col5 float, col6 double,
col7 bool, col8 binary(20), col9 nchar(20), col11 tinyint unsigned, col12 smallint unsigned, col13 int unsigned, col14 bigint unsigned) tags(loc nchar(20), tag1 int)'''
)
tdSql
.
execute
(
"create table test1 using test tags('beijing', 10)"
)
tdSql
.
execute
(
"create table test2 using test tags('tianjing', 20)"
)
tdSql
.
execute
(
"create table test3 using test tags('shanghai', 20)"
)
tdSql
.
execute
(
"create table gtest1 (ts timestamp, col1 float)"
)
tdSql
.
execute
(
"create table gtest2 (ts timestamp, col1 tinyint)"
)
tdSql
.
execute
(
"create table gtest3 (ts timestamp, col1 tinyint)"
)
...
...
@@ -48,6 +51,10 @@ class TDTestCase:
for
i
in
range
(
self
.
rowNum
):
tdSql
.
execute
(
"insert into test1 values(%d, %d, %d, %d, %d, %f, %f, %d, 'taosdata%d', '涛思数据%d', %d, %d, %d, %d)"
%
(
self
.
ts
+
i
*
1000
,
i
+
1
,
i
+
1
,
i
+
1
,
i
+
1
,
i
+
0.1
,
i
+
0.1
,
i
%
2
,
i
+
1
,
i
+
1
,
i
+
1
,
i
+
1
,
i
+
1
,
i
+
1
))
tdSql
.
execute
(
"insert into test2 values(%d, %d, %d, %d, %d, %f, %f, %d, 'taosdata%d', '涛思数据%d', %d, %d, %d, %d)"
%
(
self
.
ts2
+
i
*
1000
,
i
+
1
,
i
+
1
,
i
+
1
,
i
+
1
,
i
+
0.1
,
i
+
0.1
,
i
%
2
,
i
+
1
,
i
+
1
,
i
+
1
,
i
+
1
,
i
+
1
,
i
+
1
))
tdSql
.
execute
(
"insert into test3 values(%d, %d, %d, %d, %d, %f, %f, %d, 'taosdata%d', '涛思数据%d', %d, %d, %d, %d)"
%
(
self
.
ts2
+
i
*
1000
,
i
+
1
,
i
+
1
,
i
+
1
,
i
+
1
,
i
+
0.1
,
i
+
0.1
,
i
%
2
,
i
+
1
,
i
+
1
,
i
+
1
,
i
+
1
,
i
+
1
,
i
+
1
))
tdSql
.
execute
(
"insert into gtest1 values(1537146000000,0);"
)
tdSql
.
execute
(
"insert into gtest1 values(1537146001100,1.2);"
)
...
...
@@ -69,7 +76,7 @@ class TDTestCase:
tdSql
.
execute
(
"insert into gtest8 values(1537146000002,4);"
)
tdSql
.
execute
(
"insert into gtest8 values(1537146002202,4);"
)
# irate verifacation
# irate verifacation
--child table'query
tdSql
.
query
(
"select irate(col1) from test1;"
)
tdSql
.
checkData
(
0
,
0
,
1
)
tdSql
.
query
(
"select irate(col1) from test1 interval(10s);"
)
...
...
@@ -99,6 +106,32 @@ class TDTestCase:
tdSql
.
query
(
"select irate(col2) from test1;"
)
tdSql
.
checkData
(
0
,
0
,
1
)
# irate verifacation --super table'query
tdSql
.
query
(
"select irate(col1) from test group by tbname,loc,tag1;"
)
tdSql
.
checkData
(
0
,
0
,
1
)
tdSql
.
checkData
(
1
,
1
,
"test2"
)
tdSql
.
checkData
(
2
,
2
,
"shanghai"
)
# add function testcase of twa: query from super table
tdSql
.
query
(
"select twa(col1) from test group by tbname,loc,tag1;"
)
tdSql
.
checkData
(
0
,
0
,
50.5
)
tdSql
.
checkData
(
1
,
1
,
"test2"
)
tdSql
.
checkData
(
2
,
2
,
"shanghai"
)
# error: function of irate and twa has invalid operation
tdSql
.
error
(
"select irate(col7) from test group by tbname,loc,tag1;"
)
tdSql
.
error
(
"select irate(col7) from test group by tbname;"
)
tdSql
.
error
(
"select irate(col1) from test group by loc,tbname,tag1;"
)
# tdSql.error("select irate(col1) from test group by tbname,col7;")
tdSql
.
error
(
"select irate(col1) from test group by col7,tbname;"
)
tdSql
.
error
(
"select twa(col7) from test group by tbname,loc,tag1;"
)
tdSql
.
error
(
"select twa(col7) from test group by tbname;"
)
tdSql
.
error
(
"select twa(col1) from test group by loc,tbname,tag1;"
)
# tdSql.error("select twa(col1) from test group by tbname,col7;")
tdSql
.
error
(
"select twa(col1) from test group by col7,tbname;"
)
# general table'query
tdSql
.
query
(
"select irate(col1) from gtest1;"
)
tdSql
.
checkData
(
0
,
0
,
1.2
/
1.1
)
tdSql
.
query
(
"select irate(col1) from gtest2;"
)
...
...
tests/pytest/wal/sdbCompClusterReplica2.py
浏览文件 @
c0e4296d
...
...
@@ -86,6 +86,18 @@ class TwoClients:
tdSql
.
execute
(
"alter table stb2_0 add column col2 binary(4)"
)
tdSql
.
execute
(
"alter table stb2_0 drop column col1"
)
tdSql
.
execute
(
"insert into stb2_0 values(1614218422000,8638,'R')"
)
tdSql
.
execute
(
"drop dnode 10"
)
sleep
(
10
)
os
.
system
(
"rm -rf /var/lib/taos/*"
)
print
(
"clear dnode chenhaoran02'data files"
)
os
.
system
(
"nohup /usr/bin/taosd > /dev/null 2>&1 &"
)
print
(
"start taosd"
)
sleep
(
10
)
tdSql
.
execute
(
"reset query cache ;"
)
tdSql
.
execute
(
"create dnode chenhaoran02 ;"
)
# stop taosd and compact wal file
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录