Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
7b2dc598
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
7b2dc598
编写于
7月 15, 2022
作者:
P
plum-lihui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test: add test case for precison
上级
dc50ad59
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
64 addition
and
0 deletion
+64
-0
tests/system-test/2-query/db.py
tests/system-test/2-query/db.py
+63
-0
tests/system-test/fulltest.sh
tests/system-test/fulltest.sh
+1
-0
未找到文件。
tests/system-test/2-query/db.py
0 → 100644
浏览文件 @
7b2dc598
import
taos
import
sys
import
datetime
import
inspect
from
util.log
import
*
from
util.sql
import
*
from
util.cases
import
*
import
random
class
TDTestCase
:
updatecfgDict
=
{
'debugFlag'
:
143
,
"cDebugFlag"
:
143
,
"uDebugFlag"
:
143
,
"rpcDebugFlag"
:
143
,
"tmrDebugFlag"
:
143
,
"jniDebugFlag"
:
143
,
"simDebugFlag"
:
143
,
"dDebugFlag"
:
143
,
"dDebugFlag"
:
143
,
"vDebugFlag"
:
143
,
"mDebugFlag"
:
143
,
"qDebugFlag"
:
143
,
"wDebugFlag"
:
143
,
"sDebugFlag"
:
143
,
"tsdbDebugFlag"
:
143
,
"tqDebugFlag"
:
143
,
"fsDebugFlag"
:
143
,
"udfDebugFlag"
:
143
}
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
f
"start to excute
{
__file__
}
"
)
tdSql
.
init
(
conn
.
cursor
(),
False
)
def
case1
(
self
):
tdSql
.
execute
(
"create database if not exists dbms precision 'ms'"
)
tdSql
.
execute
(
"create database if not exists dbus precision 'us'"
)
tdSql
.
execute
(
"create database if not exists dbns precision 'ns'"
)
tdSql
.
execute
(
"create table dbms.ntb (ts timestamp, c1 int, c2 bigint)"
)
tdSql
.
execute
(
"create table dbus.ntb (ts timestamp, c1 int, c2 bigint)"
)
tdSql
.
execute
(
"create table dbns.ntb (ts timestamp, c1 int, c2 bigint)"
)
tdSql
.
execute
(
"insert into dbms.ntb values ('2022-01-01 08:00:00.001', 1, 2)"
)
tdSql
.
execute
(
"insert into dbms.ntb values ('2022-01-01 08:00:00.002', 3, 4)"
)
tdSql
.
execute
(
"insert into dbus.ntb values ('2022-01-01 08:00:00.000001', 1, 2)"
)
tdSql
.
execute
(
"insert into dbus.ntb values ('2022-01-01 08:00:00.000002', 3, 4)"
)
tdSql
.
execute
(
"insert into dbns.ntb values ('2022-01-01 08:00:00.000000001', 1, 2)"
)
tdSql
.
execute
(
"insert into dbns.ntb values ('2022-01-01 08:00:00.000000002', 3, 4)"
)
tdSql
.
query
(
"select count(c1) from dbms.ntb interval(1a)"
)
tdSql
.
checkRows
(
2
)
tdSql
.
query
(
"select count(c1) from dbus.ntb interval(1u)"
)
tdSql
.
checkRows
(
2
)
tdSql
.
query
(
"select count(c1) from dbns.ntb interval(1b)"
)
tdSql
.
checkRows
(
2
)
def
run
(
self
):
# sourcery skip: extract-duplicate-method, remove-redundant-fstring
tdSql
.
prepare
()
tdLog
.
printNoPrefix
(
"==========start case1 run ..............."
)
self
.
case1
()
tdLog
.
printNoPrefix
(
"==========end case1 run ..............."
)
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
f
"
{
__file__
}
successfully executed"
)
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tests/system-test/fulltest.sh
浏览文件 @
7b2dc598
...
...
@@ -29,6 +29,7 @@ python3 ./test.py -f 1-insert/block_wise.py
python3 ./test.py
-f
1-insert/create_retentions.py
python3 ./test.py
-f
1-insert/table_param_ttl.py
python3 ./test.py
-f
2-query/db.py
python3 ./test.py
-f
2-query/between.py
python3 ./test.py
-f
2-query/distinct.py
python3 ./test.py
-f
2-query/varchar.py
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录