Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
11c964e6
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,发现更多精彩内容 >>
未验证
提交
11c964e6
编写于
8月 31, 2021
作者:
H
Hui Li
提交者:
GitHub
8月 31, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #7673 from taosdata/test/TD-6387-m
[TD-6387]<test> fetch over 100000 from super table
上级
8acd68d1
b50992e3
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
25 addition
and
6 deletion
+25
-6
tests/pytest/fulltest.sh
tests/pytest/fulltest.sh
+1
-0
tests/pytest/query/query.py
tests/pytest/query/query.py
+24
-6
未找到文件。
tests/pytest/fulltest.sh
浏览文件 @
11c964e6
...
@@ -302,6 +302,7 @@ python3 testMinTablesPerVnode.py
...
@@ -302,6 +302,7 @@ python3 testMinTablesPerVnode.py
python3 queryCount.py
python3 queryCount.py
python3 ./test.py
-f
query/queryGroupbyWithInterval.py
python3 ./test.py
-f
query/queryGroupbyWithInterval.py
python3 client/twoClients.py
python3 client/twoClients.py
python3 ./test.py
-f
query/query.py
python3 test.py
-f
query/queryInterval.py
python3 test.py
-f
query/queryInterval.py
python3 test.py
-f
query/queryFillTest.py
python3 test.py
-f
query/queryFillTest.py
...
...
tests/pytest/query/query.py
浏览文件 @
11c964e6
...
@@ -13,10 +13,10 @@
...
@@ -13,10 +13,10 @@
import
sys
import
sys
import
taos
import
taos
from
util.log
import
tdLog
from
util.log
import
*
from
util.cases
import
tdCases
from
util.cases
import
*
from
util.sql
import
tdSql
from
util.sql
import
*
from
util.dnodes
import
tdDnodes
from
util.dnodes
import
*
class
TDTestCase
:
class
TDTestCase
:
...
@@ -26,6 +26,18 @@ class TDTestCase:
...
@@ -26,6 +26,18 @@ class TDTestCase:
self
.
ts
=
1538548685000
self
.
ts
=
1538548685000
def
bug_6387
(
self
):
tdSql
.
execute
(
"create database bug6387 "
)
tdSql
.
execute
(
"use bug6387 "
)
tdSql
.
execute
(
"create table test(ts timestamp, c1 int) tags(t1 int)"
)
for
i
in
range
(
5000
):
sql
=
"insert into t%d using test tags(1) values "
%
i
for
j
in
range
(
21
):
sql
=
sql
+
"(now+%ds,%d)"
%
(
j
,
j
)
tdSql
.
execute
(
sql
)
tdSql
.
query
(
"select count(*) from test interval(1s) group by tbname"
)
tdSql
.
checkData
(
0
,
1
,
1
)
def
run
(
self
):
def
run
(
self
):
tdSql
.
prepare
()
tdSql
.
prepare
()
...
@@ -120,15 +132,21 @@ class TDTestCase:
...
@@ -120,15 +132,21 @@ class TDTestCase:
tdSql
.
execute
(
"insert into 'Tb0' using tb tags(1) values(now, 1)"
)
tdSql
.
execute
(
"insert into 'Tb0' using tb tags(1) values(now, 1)"
)
tdSql
.
query
(
"select * from tb"
)
tdSql
.
query
(
"select * from tb"
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkRows
(
1
)
tdSql
.
query
(
"select * from tb0"
)
tdSql
.
checkRows
(
1
)
# For jira:https://jira.taosdata.com:18080/browse/TD-6314
# For jira:https://jira.taosdata.com:18080/browse/TD-6314
tdSql
.
execute
(
"use db"
)
tdSql
.
execute
(
"use db"
)
tdSql
.
execute
(
"create stable stb_001(ts timestamp,v int) tags(c0 int)"
)
tdSql
.
execute
(
"create stable stb_001(ts timestamp,v int) tags(c0 int)"
)
tdSql
.
execute
(
"insert into stb1 using stb_001 tags(1) values(now,1)"
)
tdSql
.
query
(
"select _block_dist() from stb_001"
)
tdSql
.
query
(
"select _block_dist() from stb_001"
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkRows
(
1
)
tdSql
.
query
(
"select * from tb0"
)
tdSql
.
checkRows
(
1
)
#For jira: https://jira.taosdata.com:18080/browse/TD-6387
tdLog
.
info
(
"case for bug_6387"
)
self
.
bug_6387
()
def
stop
(
self
):
def
stop
(
self
):
tdSql
.
close
()
tdSql
.
close
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录