Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
bae38518
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,发现更多精彩内容 >>
未验证
提交
bae38518
编写于
9月 08, 2021
作者:
H
Hui Li
提交者:
GitHub
9月 08, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #7815 from taosdata/xiaoping/test_case
[TD-6425]<test>: add test case for join result more than 1MB
上级
c1402a60
e2c2a7a2
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
21 addition
and
0 deletion
+21
-0
tests/pytest/query/queryJoin.py
tests/pytest/query/queryJoin.py
+21
-0
未找到文件。
tests/pytest/query/queryJoin.py
浏览文件 @
bae38518
...
...
@@ -13,6 +13,8 @@
import
sys
import
taos
import
string
import
random
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
...
...
@@ -23,6 +25,11 @@ class TDTestCase:
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
())
def
get_random_string
(
self
,
length
):
letters
=
string
.
ascii_lowercase
result_str
=
''
.
join
(
random
.
choice
(
letters
)
for
i
in
range
(
length
))
return
result_str
def
run
(
self
):
tdSql
.
prepare
()
...
...
@@ -186,6 +193,20 @@ class TDTestCase:
tdSql
.
query
(
"select t1.ts from t0,t1 where t0.ts = t1.ts"
)
tdSql
.
checkData
(
0
,
0
,
'2018-10-03 14:38:05.000000'
)
#TD-6425 join result more than 1MB
tdSql
.
execute
(
"create database test_join"
)
tdSql
.
execute
(
"use test_join"
)
ts
=
1538548685000
tdSql
.
execute
(
"create table stb(ts timestamp, c1 nchar(200)) tags(id int, loc binary(20))"
)
for
i
in
range
(
2
):
tdSql
.
execute
(
"create table tb%d using stb tags(1, 'city%d')"
%
(
i
,
i
))
for
j
in
range
(
1000
):
tdSql
.
execute
(
"insert into tb%d values(%d, '%s')"
%
(
i
,
ts
+
j
,
self
.
get_random_string
(
200
)))
tdSql
.
query
(
"select tb0.c1, tb1.c1 from tb0, tb1 where tb0.ts = tb1.ts"
)
tdSql
.
checkRows
(
1000
)
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录