Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
d704d089
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
d704d089
编写于
9月 29, 2020
作者:
R
root
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix queryInterval failure
上级
b694980d
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
21 addition
and
17 deletion
+21
-17
tests/pytest/query/queryInterval.py
tests/pytest/query/queryInterval.py
+21
-17
未找到文件。
tests/pytest/query/queryInterval.py
浏览文件 @
d704d089
...
...
@@ -23,35 +23,39 @@ class TDTestCase:
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
self
.
ts
=
15
38
548685000
self
.
ts
=
15
93
548685000
def
run
(
self
):
tdSql
.
prepare
()
tdSql
.
execute
(
"create table st (ts timestamp, voltage int) tags (loc nchar(30))"
)
tdSql
.
execute
(
"insert into t0 using st tags('beijing') values(now, 220) (now - 15d, 221) (now - 30d, 225) (now - 35d, 228) (now - 45d, 222)"
)
tdSql
.
execute
(
"insert into t1 using st tags('shanghai') values(now, 220) (now - 60d, 221) (now - 50d, 225) (now - 40d, 228) (now - 20d, 222)"
)
tdSql
.
execute
(
"insert into t0 using st tags('beijing') values(%d, 220) (%d, 221) (%d, 225) (%d, 228) (%d, 222)"
%
(
self
.
ts
,
self
.
ts
+
1000000000
,
self
.
ts
+
2000000000
,
self
.
ts
+
3000000000
,
self
.
ts
+
6000000000
))
tdSql
.
execute
(
"insert into t1 using st tags('shanghai') values(%d, 220) (%d, 221) (%d, 225) (%d, 228) (%d, 222)"
%
(
self
.
ts
,
self
.
ts
+
2000000000
,
self
.
ts
+
4000000000
,
self
.
ts
+
5000000000
,
self
.
ts
+
7000000000
))
tdSql
.
query
(
"select avg(voltage) from st interval(1n)"
)
tdSql
.
checkRows
(
3
)
tdSql
.
checkData
(
0
,
1
,
22
3.0
)
tdSql
.
checkData
(
1
,
1
,
22
5
.0
)
tdSql
.
checkData
(
2
,
1
,
22
0.333333
)
tdSql
.
checkData
(
0
,
1
,
22
1.4
)
tdSql
.
checkData
(
1
,
1
,
22
7
.0
)
tdSql
.
checkData
(
2
,
1
,
22
2.0
)
tdSql
.
query
(
"select avg(voltage) from st interval(1n, 15d)"
)
tdSql
.
checkRows
(
3
)
tdSql
.
checkData
(
0
,
1
,
224.8
)
tdSql
.
checkData
(
1
,
1
,
222.666666
)
tdSql
.
checkData
(
2
,
1
,
220.0
)
tdSql
.
checkRows
(
4
)
tdSql
.
checkData
(
0
,
1
,
220.333333
)
tdSql
.
checkData
(
1
,
1
,
224.666666
)
tdSql
.
checkData
(
2
,
1
,
225.0
)
tdSql
.
checkData
(
3
,
1
,
222.0
)
tdSql
.
query
(
"select avg(voltage) from st interval(1n, 15d) group by loc"
)
tdSql
.
checkRows
(
6
)
tdSql
.
checkData
(
0
,
1
,
225.0
)
tdSql
.
checkData
(
1
,
1
,
223.0
)
tdSql
.
checkData
(
2
,
1
,
220.0
)
tdSql
.
checkData
(
3
,
1
,
224.666666
)
tdSql
.
checkData
(
4
,
1
,
222.0
)
tdSql
.
checkData
(
5
,
1
,
220.0
)
tdSql
.
checkRows
(
7
)
tdSql
.
checkData
(
0
,
1
,
220.5
)
tdSql
.
checkData
(
1
,
1
,
226.5
)
tdSql
.
checkData
(
2
,
1
,
222.0
)
tdSql
.
checkData
(
3
,
1
,
220.0
)
tdSql
.
checkData
(
4
,
1
,
221.0
)
tdSql
.
checkData
(
5
,
1
,
226.5
)
tdSql
.
checkData
(
6
,
1
,
222.0
)
def
stop
(
self
):
tdSql
.
close
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录