Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
1626e4ae
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看板
提交
1626e4ae
编写于
3月 26, 2022
作者:
P
Ping Xiao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TS-1366]<test>: add test case
上级
9c780e71
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
11 addition
and
5 deletion
+11
-5
tests/parallel_test/cases.task
tests/parallel_test/cases.task
+1
-0
tests/pytest/table/create.py
tests/pytest/table/create.py
+10
-5
未找到文件。
tests/parallel_test/cases.task
浏览文件 @
1626e4ae
...
@@ -748,3 +748,4 @@
...
@@ -748,3 +748,4 @@
3,,develop-test,python3 ./test.py -f 2-query/TD-13414.py
3,,develop-test,python3 ./test.py -f 2-query/TD-13414.py
8,,pytest,python3 test.py -f update/update2.py
8,,pytest,python3 test.py -f update/update2.py
4,,pytest,python3 test.py -f insert/line_insert.py
4,,pytest,python3 test.py -f insert/line_insert.py
20,,pytest,python3 test.py -f table/create.py
tests/pytest/table/create.py
浏览文件 @
1626e4ae
...
@@ -106,9 +106,9 @@ class TDTestCase:
...
@@ -106,9 +106,9 @@ class TDTestCase:
tdSql
.
query
(
"select _block_dist() from db.`%s` ; "
%
self
.
stb1
)
tdSql
.
query
(
"select _block_dist() from db.`%s` ; "
%
self
.
stb1
)
tdSql
.
checkRows
(
0
)
tdSql
.
checkRows
(
0
)
tdSql
.
query
(
"show create
s
table db.`%s` ; "
%
self
.
stb1
)
tdSql
.
query
(
"show create table db.`%s` ; "
%
self
.
stb1
)
tdSql
.
checkData
(
0
,
0
,
self
.
stb1
)
tdSql
.
checkData
(
0
,
0
,
self
.
stb1
)
tdSql
.
checkData
(
0
,
1
,
"
create table `%s` (ts TIMESTAMP,i INT) TAGS (j
INT)"
%
self
.
stb1
)
tdSql
.
checkData
(
0
,
1
,
"
CREATE TABLE `%s` (`ts` TIMESTAMP,`i` INT) TAGS (`j`
INT)"
%
self
.
stb1
)
tdSql
.
execute
(
"create table db.`table!1` using db.`%s` tags(1)"
%
self
.
stb1
)
tdSql
.
execute
(
"create table db.`table!1` using db.`%s` tags(1)"
%
self
.
stb1
)
tdSql
.
query
(
"describe db.`table!1` ; "
)
tdSql
.
query
(
"describe db.`table!1` ; "
)
...
@@ -221,7 +221,7 @@ class TDTestCase:
...
@@ -221,7 +221,7 @@ class TDTestCase:
tdSql
.
query
(
"show create stable `%s` ; "
%
self
.
stb2
)
tdSql
.
query
(
"show create stable `%s` ; "
%
self
.
stb2
)
tdSql
.
checkData
(
0
,
0
,
self
.
stb2
)
tdSql
.
checkData
(
0
,
0
,
self
.
stb2
)
tdSql
.
checkData
(
0
,
1
,
"
create table `%s` (ts TIMESTAMP,i INT) TAGS (j
INT)"
%
self
.
stb2
)
tdSql
.
checkData
(
0
,
1
,
"
CREATE TABLE `%s` (`ts` TIMESTAMP,`i` INT) TAGS (`j`
INT)"
%
self
.
stb2
)
tdSql
.
execute
(
"create table `table!2` using `%s` tags(1)"
%
self
.
stb2
)
tdSql
.
execute
(
"create table `table!2` using `%s` tags(1)"
%
self
.
stb2
)
tdSql
.
query
(
"describe `table!2` ; "
)
tdSql
.
query
(
"describe `table!2` ; "
)
...
@@ -310,7 +310,7 @@ class TDTestCase:
...
@@ -310,7 +310,7 @@ class TDTestCase:
tdSql
.
query
(
"show create table `%s` ; "
%
self
.
regular_table
)
tdSql
.
query
(
"show create table `%s` ; "
%
self
.
regular_table
)
tdSql
.
checkData
(
0
,
0
,
self
.
regular_table
)
tdSql
.
checkData
(
0
,
0
,
self
.
regular_table
)
tdSql
.
checkData
(
0
,
1
,
"CREATE TABLE `%s` (
ts TIMESTAMP,i
INT)"
%
self
.
regular_table
)
tdSql
.
checkData
(
0
,
1
,
"CREATE TABLE `%s` (
`ts` TIMESTAMP,`i`
INT)"
%
self
.
regular_table
)
tdSql
.
execute
(
"insert into `%s` values(now, 1)"
%
self
.
regular_table
)
tdSql
.
execute
(
"insert into `%s` values(now, 1)"
%
self
.
regular_table
)
tdSql
.
query
(
"select * from `%s` ; "
%
self
.
regular_table
)
tdSql
.
query
(
"select * from `%s` ; "
%
self
.
regular_table
)
...
@@ -341,7 +341,12 @@ class TDTestCase:
...
@@ -341,7 +341,12 @@ class TDTestCase:
tdSql
.
error
(
"select * from `%s`"
%
self
.
regular_table
)
tdSql
.
error
(
"select * from `%s`"
%
self
.
regular_table
)
# TS-1366
tdSql
.
execute
(
"create table meters(ts timestamp, c1 int) tags(t1 int, t2 tinyint unsigned, t3 smallint unsigned, t4 int unsigned, t5 bigint unsigned, t6 int)"
)
tdSql
.
execute
(
"create table meter1 using meters tags(1, 2, 3, 4, 5, 6)"
)
tdSql
.
query
(
"show create table meter1"
)
tdSql
.
checkData
(
0
,
1
,
"CREATE TABLE `meter1` USING `meters` TAGS (1,2,3,4,5,6)"
)
def
stop
(
self
):
def
stop
(
self
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录