Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
af970ccc
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看板
提交
af970ccc
编写于
4月 22, 2022
作者:
C
cpwu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add sum case
上级
e6d76aa4
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
124 addition
and
4 deletion
+124
-4
tests/system-test/2-query/cast.py
tests/system-test/2-query/cast.py
+4
-4
tests/system-test/2-query/sum.py
tests/system-test/2-query/sum.py
+120
-0
未找到文件。
tests/system-test/2-query/cast.py
浏览文件 @
af970ccc
...
...
@@ -235,7 +235,7 @@ class TDTestCase:
tdSql
.
checkData
(
i
,
0
,
date_data
)
tdLog
.
printNoPrefix
(
"==========step16: cast
small
int to bigint, expect no changes"
)
tdLog
.
printNoPrefix
(
"==========step16: cast
tiny
int to bigint, expect no changes"
)
tdSql
.
query
(
"select c4 from ct4"
)
data_ct4_c4
=
[
tdSql
.
getData
(
i
,
0
)
for
i
in
range
(
tdSql
.
queryRows
)]
tdSql
.
query
(
"select c4 from t1"
)
...
...
@@ -249,7 +249,7 @@ class TDTestCase:
tdSql
.
checkData
(
i
,
0
,
data_t1_c4
[
i
])
tdLog
.
printNoPrefix
(
"==========step17: cast
small
int to binary, expect changes to str(int) "
)
tdLog
.
printNoPrefix
(
"==========step17: cast
tiny
int to binary, expect changes to str(int) "
)
tdSql
.
query
(
"select cast(c4 as binary(32)) as b from ct4"
)
for
i
in
range
(
len
(
data_ct4_c4
)):
...
...
@@ -258,7 +258,7 @@ class TDTestCase:
for
i
in
range
(
len
(
data_t1_c4
)):
tdSql
.
checkData
(
i
,
0
,
str
(
data_t1_c4
[
i
])
)
tdLog
.
printNoPrefix
(
"==========step18: cast
small
int to nchar, expect changes to str(int) "
)
tdLog
.
printNoPrefix
(
"==========step18: cast
tiny
int to nchar, expect changes to str(int) "
)
tdSql
.
query
(
"select cast(c4 as nchar(32)) as b from ct4"
)
for
i
in
range
(
len
(
data_ct4_c4
)):
...
...
@@ -267,7 +267,7 @@ class TDTestCase:
for
i
in
range
(
len
(
data_t1_c4
)):
tdSql
.
checkData
(
i
,
0
,
str
(
data_t1_c4
[
i
])
)
tdLog
.
printNoPrefix
(
"==========step19: cast
small
int to timestamp, expect changes to timestamp "
)
tdLog
.
printNoPrefix
(
"==========step19: cast
tiny
int to timestamp, expect changes to timestamp "
)
tdSql
.
query
(
"select cast(c4 as timestamp) as b from ct4"
)
for
i
in
range
(
len
(
data_ct4_c4
)):
...
...
tests/system-test/2-query/sum.py
0 → 100644
浏览文件 @
af970ccc
import
taos
import
sys
import
datetime
import
inspect
from
util.log
import
*
from
util.sql
import
*
from
util.cases
import
*
from
util.dnodes
import
*
class
TDTestCase
:
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
f
"start to excute
{
__file__
}
"
)
tdSql
.
init
(
conn
.
cursor
())
def
__sum_checkdata
(
self
,
row
,
col
,
data
):
pass
def
all_test
(
self
):
pass
def
__create_tb
(
self
):
tdSql
.
prepare
()
tdLog
.
printNoPrefix
(
"==========step1:create table"
)
tdSql
.
execute
(
'''create table stb1
(ts timestamp, c1 int, c2 bigint, c3 smallint, c4 tinyint, c5 float, c6 double, c7 bool, c8 binary(16),c9 nchar(32), c10 timestamp)
tags (t1 int)
'''
)
tdSql
.
execute
(
'''
create table t1
(ts timestamp, c1 int, c2 bigint, c3 smallint, c4 tinyint, c5 float, c6 double, c7 bool, c8 binary(16),c9 nchar(32), c10 timestamp)
'''
)
for
i
in
range
(
4
):
tdSql
.
execute
(
f
'create table ct
{
i
+
1
}
using stb1 tags (
{
i
+
1
}
)'
)
def
__insert_data
(
self
,
rows
):
for
i
in
range
(
9
):
tdSql
.
execute
(
f
"insert into ct1 values ( now()-
{
i
*
10
}
s,
{
1
*
i
}
,
{
11111
*
i
}
,
{
111
*
i
}
,
{
11
*
i
}
,
{
1.11
*
i
}
,
{
11.11
*
i
}
,
{
i
%
2
}
, 'binary
{
i
}
', 'nchar
{
i
}
', now()+
{
1
*
i
}
a )"
)
tdSql
.
execute
(
f
"insert into ct4 values ( now()-
{
i
*
90
}
d,
{
1
*
i
}
,
{
11111
*
i
}
,
{
111
*
i
}
,
{
11
*
i
}
,
{
1.11
*
i
}
,
{
11.11
*
i
}
,
{
i
%
2
}
, 'binary
{
i
}
', 'nchar
{
i
}
', now()+
{
1
*
i
}
a )"
)
tdSql
.
execute
(
"insert into ct1 values (now()-45s, 0, 0, 0, 0, 0, 0, 0, 'binary0', 'nchar0', now()+8a )"
)
tdSql
.
execute
(
"insert into ct1 values (now()+10s, 9, -99999, -999, -99, -9.99, -99.99, 1, 'binary9', 'nchar9', now()+9a )"
)
tdSql
.
execute
(
"insert into ct4 values (now()-810d, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL ) "
)
tdSql
.
execute
(
"insert into ct4 values (now()-400d, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL ) "
)
tdSql
.
execute
(
f
"insert into ct4 values (now()+
{
rows
*
9
}
d, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL ) "
)
tdSql
.
execute
(
f
'''insert into ct4 values
(now()+
{
rows
*
9
-
10
}
d,
{
pow
(
2
,
31
)
-
pow
(
2
,
15
)
}
,
{
pow
(
2
,
63
)
-
pow
(
2
,
30
)
}
, 32767, 127,
{
3.3
*
pow
(
10
,
38
)
}
,
{
1.3
*
pow
(
10
,
308
)
}
,
{
rows
%
2
}
, "binary_limit-1", "nachar_limit-1", now()-1d )
'''
)
tdSql
.
execute
(
f
'''insert into ct4 values
(now()+
{
rows
*
9
-
20
}
d,
{
pow
(
2
,
31
)
-
pow
(
2
,
16
)
}
,
{
pow
(
2
,
63
)
-
pow
(
2
,
31
)
}
, 32766, 126,
{
3.2
*
pow
(
10
,
38
)
}
,
{
1.2
*
pow
(
10
,
308
)
}
,
{
(
rows
-
1
)
%
2
}
,
"binary_limit-2", "nachar_limit-2", now()-2d )
'''
)
for
i
in
range
(
rows
):
tdSql
.
execute
(
f
'''insert into t1 values
( now()-
{
i
}
h,
{
i
}
,
{
i
}
,
{
i
%
32767
}
,
{
i
%
127
}
,
{
i
*
1.11111
}
,
{
i
*
1000.1111
}
,
{
i
%
2
}
,
"binary_
{
i
}
", "nchar_
{
i
}
", now-
{
i
}
s )
'''
)
tdSql
.
execute
(
f
'''insert into t1 values
( now() + 3h, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
( now()-
{
(
rows
//
2
)
*
60
+
30
}
, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
( now()-
{
rows
}
h, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
( now() + 2h,
{
pow
(
2
,
31
)
-
pow
(
2
,
15
)
}
,
{
pow
(
2
,
63
)
-
pow
(
2
,
30
)
}
, 32767, 127,
{
3.3
*
pow
(
10
,
38
)
}
,
{
1.3
*
pow
(
10
,
308
)
}
,
{
rows
%
2
}
,
"binary_limit-1", "nachar_limit-1", now()-1d
)
(now() + 1h ,
{
pow
(
2
,
31
)
-
pow
(
2
,
16
)
}
,
{
pow
(
2
,
63
)
-
pow
(
2
,
31
)
}
, 32766, 126,
{
3.2
*
pow
(
10
,
38
)
}
,
{
1.2
*
pow
(
10
,
308
)
}
,
{
(
rows
-
1
)
%
2
}
,
"binary_limit-2", "nachar_limit-2", now()-2d
)
'''
)
def
run
(
self
):
tdSql
.
prepare
()
tdLog
.
printNoPrefix
(
"==========step1:create table"
)
self
.
__create_tb
()
tdLog
.
printNoPrefix
(
"==========step2:insert data"
)
self
.
__insert_data
()
self
.
all_test
()
tdDnodes
.
stop
(
1
)
tdDnodes
.
start
(
1
)
tdSql
.
execute
(
"use db"
)
self
.
all_test
()
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
f
"
{
__file__
}
successfully executed"
)
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录