Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
fd155d42
T
TDengine
项目概览
慢慢CG
/
TDengine
与 Fork 源项目一致
Fork自
taosdata / TDengine
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
fd155d42
编写于
6月 08, 2021
作者:
P
Ping Xiao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update test case
上级
9468f458
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
62 addition
and
4 deletion
+62
-4
tests/pytest/query/last_row_cache.py
tests/pytest/query/last_row_cache.py
+18
-4
tests/pytest/query/subqueryFilter.py
tests/pytest/query/subqueryFilter.py
+44
-0
未找到文件。
tests/pytest/query/last_row_cache.py
浏览文件 @
fd155d42
...
...
@@ -141,7 +141,7 @@ class TDTestCase:
def
run
(
self
):
tdSql
.
prepare
()
print
(
"============== last_row_cache_0.sim"
)
print
(
"==============
Step1:
last_row_cache_0.sim"
)
tdSql
.
execute
(
"create database test1 cachelast 0"
)
tdSql
.
execute
(
"use test1"
)
self
.
insertData
()
...
...
@@ -149,43 +149,48 @@ class TDTestCase:
self
.
insertData2
()
self
.
executeQueries2
()
print
(
"==============
alter last cache
"
)
print
(
"==============
Step2: alter database test1 cachelast 1
"
)
tdSql
.
execute
(
"alter database test1 cachelast 1"
)
self
.
executeQueries2
()
print
(
"============== Step3: alter database test1 cachelast 2"
)
tdSql
.
execute
(
"alter database test1 cachelast 2"
)
self
.
executeQueries2
()
print
(
"============== Step4: alter database test1 cachelast 3"
)
tdSql
.
execute
(
"alter database test1 cachelast 3"
)
self
.
executeQueries2
()
print
(
"==============
alter last cache
"
)
print
(
"==============
Step5: alter database test1 cachelast 0 and restart taosd
"
)
tdSql
.
execute
(
"alter database test1 cachelast 0"
)
self
.
executeQueries2
()
tdDnodes
.
stop
(
1
)
tdDnodes
.
start
(
1
)
self
.
executeQueries2
()
print
(
"============== Step6: alter database test1 cachelast 1 and restart taosd"
)
tdSql
.
execute
(
"alter database test1 cachelast 1"
)
self
.
executeQueries2
()
tdDnodes
.
stop
(
1
)
tdDnodes
.
start
(
1
)
self
.
executeQueries2
()
print
(
"============== Step7: alter database test1 cachelast 2 and restart taosd"
)
tdSql
.
execute
(
"alter database test1 cachelast 2"
)
self
.
executeQueries2
()
tdDnodes
.
stop
(
1
)
tdDnodes
.
start
(
1
)
self
.
executeQueries2
()
print
(
"============== Step8: alter database test1 cachelast 3 and restart taosd"
)
tdSql
.
execute
(
"alter database test1 cachelast 3"
)
self
.
executeQueries2
()
tdDnodes
.
stop
(
1
)
tdDnodes
.
start
(
1
)
self
.
executeQueries2
()
print
(
"==============
last_row_cache_1.sim
"
)
print
(
"==============
Step9: create database test2 cachelast 1
"
)
tdSql
.
execute
(
"create database test2 cachelast 1"
)
tdSql
.
execute
(
"use test2"
)
self
.
insertData
()
...
...
@@ -196,42 +201,51 @@ class TDTestCase:
tdDnodes
.
start
(
1
)
self
.
executeQueries2
()
print
(
"============== Step8: alter database test2 cachelast 0"
)
tdSql
.
execute
(
"alter database test2 cachelast 0"
)
self
.
executeQueries2
()
print
(
"============== Step9: alter database test2 cachelast 1"
)
tdSql
.
execute
(
"alter database test2 cachelast 1"
)
self
.
executeQueries2
()
print
(
"============== Step10: alter database test2 cachelast 2"
)
tdSql
.
execute
(
"alter database test2 cachelast 2"
)
self
.
executeQueries2
()
print
(
"============== Step11: alter database test2 cachelast 3"
)
tdSql
.
execute
(
"alter database test2 cachelast 3"
)
self
.
executeQueries2
()
print
(
"============== Step12: alter database test2 cachelast 0 and restart taosd"
)
tdSql
.
execute
(
"alter database test2 cachelast 0"
)
self
.
executeQueries2
()
tdDnodes
.
stop
(
1
)
tdDnodes
.
start
(
1
)
self
.
executeQueries2
()
print
(
"============== Step13: alter database test2 cachelast 1 and restart taosd"
)
tdSql
.
execute
(
"alter database test2 cachelast 1"
)
self
.
executeQueries2
()
tdDnodes
.
stop
(
1
)
tdDnodes
.
start
(
1
)
self
.
executeQueries2
()
print
(
"============== Step14: alter database test2 cachelast 2 and restart taosd"
)
tdSql
.
execute
(
"alter database test2 cachelast 2"
)
self
.
executeQueries2
()
tdDnodes
.
stop
(
1
)
tdDnodes
.
start
(
1
)
self
.
executeQueries2
()
print
(
"============== Step15: alter database test2 cachelast 3 and restart taosd"
)
tdSql
.
execute
(
"alter database test2 cachelast 3"
)
self
.
executeQueries2
()
tdDnodes
.
stop
(
1
)
tdDnodes
.
start
(
1
)
self
.
executeQueries2
()
print
(
"============== Step16: select last_row(*) from st group by tbname"
)
tdSql
.
query
(
"select last_row(*) from st group by tbname"
)
tdSql
.
checkRows
(
10
)
...
...
tests/pytest/query/subqueryFilter.py
浏览文件 @
fd155d42
...
...
@@ -67,6 +67,50 @@ class TDTestCase:
tdSql
.
query
(
"select count(*) from (select first(tagtype) val from st interval(30s)) a where a.val > 20"
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
1
)
tdSql
.
query
(
"select count(*) from (select first(tagtype) val from st interval(30s)) a where a.val >= 20"
)
tdSql
.
checkRows
(
2
)
tdSql
.
query
(
"select count(*) from (select first(tagtype) val from st interval(30s)) a where a.val < 20"
)
tdSql
.
checkRows
(
63
)
tdSql
.
query
(
"select count(*) from (select first(tagtype) val from st interval(30s)) a where a.val <= 20"
)
tdSql
.
checkRows
(
64
)
tdSql
.
query
(
"select count(*) from (select first(tagtype) val from st interval(30s)) a where a.val = 20"
)
tdSql
.
checkRows
(
1
)
tdSql
.
query
(
"select count(*) from (select first(tagtype) val from st interval(30s)) a where a.val > 20"
)
tdSql
.
checkData
(
0
,
0
,
1
)
tdSql
.
query
(
"select count(*) from (select first(tagtype) val from st interval(30s)) a where a.val >= 20"
)
tdSql
.
checkData
(
0
,
0
,
2
)
tdSql
.
query
(
"select count(*) from (select first(tagtype) val from st interval(30s)) a where a.val < 20"
)
tdSql
.
checkData
(
0
,
0
,
63
)
tdSql
.
query
(
"select count(*) from (select first(tagtype) val from st interval(30s)) a where a.val <= 20"
)
tdSql
.
checkData
(
0
,
0
,
64
)
tdSql
.
query
(
"select count(*) from (select first(tagtype) val from st interval(30s)) a where a.val = 20"
)
tdSql
.
checkData
(
0
,
0
,
1
)
tdSql
.
query
(
"select count(*) from (select last(tagtype) val from st interval(30s)) a where a.val > 20"
)
tdSql
.
checkData
(
0
,
0
,
3
)
tdSql
.
query
(
"select count(*) from (select last(tagtype) val from st interval(30s)) a where a.val >= 20"
)
tdSql
.
checkData
(
0
,
0
,
5
)
tdSql
.
query
(
"select count(*) from (select last(tagtype) val from st interval(30s)) a where a.val < 20"
)
tdSql
.
checkData
(
0
,
0
,
60
)
tdSql
.
query
(
"select count(*) from (select last(tagtype) val from st interval(30s)) a where a.val <= 20"
)
tdSql
.
checkData
(
0
,
0
,
62
)
tdSql
.
query
(
"select count(*) from (select last(tagtype) val from st interval(30s)) a where a.val = 20"
)
tdSql
.
checkData
(
0
,
0
,
2
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录