Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
c1f0dfbb
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看板
未验证
提交
c1f0dfbb
编写于
4月 21, 2021
作者:
H
huili
提交者:
GitHub
4月 21, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #5869 from taosdata/test/TD-3789
[TD-3789]<test> add case for TD-3789, and fix util.sql
上级
8531ffa4
5745b2d0
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
95 addition
and
0 deletion
+95
-0
tests/pytest/alter/alterTabAddTagWithNULL.py
tests/pytest/alter/alterTabAddTagWithNULL.py
+85
-0
tests/pytest/fulltest.sh
tests/pytest/fulltest.sh
+2
-0
tests/pytest/util/sql.py
tests/pytest/util/sql.py
+8
-0
未找到文件。
tests/pytest/alter/alterTabAddTagWithNULL.py
0 → 100644
浏览文件 @
c1f0dfbb
###################################################################
# Copyright (c) 2016 by TAOS Technologies, Inc.
# All rights reserved.
#
# This file is proprietary and confidential to TAOS Technologies.
# No part of this file may be reproduced, stored, transmitted,
# disclosed or used in any form or by any means other than as
# expressly provided by the written permission from Jianhui Tao
#
###################################################################
# -*- coding: utf-8 -*-
import
sys
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
from
util.dnodes
import
*
class
TDTestCase
:
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
f
"start to execute
{
__file__
}
"
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
def
run
(
self
):
tdSql
.
execute
(
"drop database if exists db"
)
tdSql
.
execute
(
"create database if not exists db keep 36500"
)
tdSql
.
execute
(
"use db"
)
tdLog
.
printNoPrefix
(
"==========step1:create table && insert data"
)
tdSql
.
execute
(
"create table stbtag (ts timestamp, c1 int) TAGS(t1 int)"
)
tdSql
.
execute
(
"create table tag1 using stbtag tags(1)"
)
tdLog
.
printNoPrefix
(
"==========step2:alter stb add tag create new chiltable"
)
tdSql
.
execute
(
"alter table stbtag add tag t2 int"
)
tdSql
.
execute
(
"alter table stbtag add tag t3 tinyint"
)
tdSql
.
execute
(
"alter table stbtag add tag t4 smallint "
)
tdSql
.
execute
(
"alter table stbtag add tag t5 bigint"
)
tdSql
.
execute
(
"alter table stbtag add tag t6 float "
)
tdSql
.
execute
(
"alter table stbtag add tag t7 double "
)
tdSql
.
execute
(
"alter table stbtag add tag t8 bool "
)
tdSql
.
execute
(
"alter table stbtag add tag t9 binary(10) "
)
tdSql
.
execute
(
"alter table stbtag add tag t10 nchar(10)"
)
tdSql
.
execute
(
"create table tag2 using stbtag tags(2, 22, 23, 24, 25, 26.1, 27.1, 1, 'binary9', 'nchar10')"
)
tdSql
.
query
(
"select tbname, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10 from stbtag"
)
tdSql
.
checkData
(
1
,
0
,
"tag2"
)
tdSql
.
checkData
(
1
,
1
,
2
)
tdSql
.
checkData
(
1
,
2
,
22
)
tdSql
.
checkData
(
1
,
3
,
23
)
tdSql
.
checkData
(
1
,
4
,
24
)
tdSql
.
checkData
(
1
,
5
,
25
)
tdSql
.
checkData
(
1
,
6
,
26.1
)
tdSql
.
checkData
(
1
,
7
,
27.1
)
tdSql
.
checkData
(
1
,
8
,
1
)
tdSql
.
checkData
(
1
,
9
,
"binary9"
)
tdSql
.
checkData
(
1
,
10
,
"nchar10"
)
tdLog
.
printNoPrefix
(
"==========step3:alter stb drop tag create new chiltable"
)
tdSql
.
execute
(
"alter table stbtag drop tag t2 "
)
tdSql
.
execute
(
"alter table stbtag drop tag t3 "
)
tdSql
.
execute
(
"alter table stbtag drop tag t4 "
)
tdSql
.
execute
(
"alter table stbtag drop tag t5 "
)
tdSql
.
execute
(
"alter table stbtag drop tag t6 "
)
tdSql
.
execute
(
"alter table stbtag drop tag t7 "
)
tdSql
.
execute
(
"alter table stbtag drop tag t8 "
)
tdSql
.
execute
(
"alter table stbtag drop tag t9 "
)
tdSql
.
execute
(
"alter table stbtag drop tag t10 "
)
tdSql
.
execute
(
"create table tag3 using stbtag tags(3)"
)
tdSql
.
query
(
"select * from stbtag where tbname like 'tag3' "
)
tdSql
.
checkCols
(
3
)
tdSql
.
query
(
"select tbname, t1 from stbtag where tbname like 'tag3' "
)
tdSql
.
checkData
(
0
,
1
,
3
)
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
f
"
{
__file__
}
successfully executed"
)
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
\ No newline at end of file
tests/pytest/fulltest.sh
浏览文件 @
c1f0dfbb
...
...
@@ -220,6 +220,7 @@ python3 ./test.py -f query/bug3375.py
python3 ./test.py
-f
query/queryJoin10tables.py
python3 ./test.py
-f
query/queryStddevWithGroupby.py
#stream
python3 ./test.py
-f
stream/metric_1.py
python3 ./test.py
-f
stream/metric_n.py
...
...
@@ -234,6 +235,7 @@ python3 ./test.py -f stream/table_n.py
#alter table
python3 ./test.py
-f
alter/alter_table_crash.py
python3 ./test.py
-f
alter/alterTabAddTagWithNULL.py
# client
python3 ./test.py
-f
client/client.py
...
...
tests/pytest/util/sql.py
浏览文件 @
c1f0dfbb
...
...
@@ -105,6 +105,14 @@ class TDSql:
args
=
(
caller
.
filename
,
caller
.
lineno
,
self
.
sql
,
self
.
queryRows
,
expectRows
)
tdLog
.
exit
(
"%s(%d) failed: sql:%s, queryRows:%d != expect:%d"
%
args
)
def
checkCols
(
self
,
expectCols
):
if
self
.
queryCols
==
expectCols
:
tdLog
.
info
(
"sql:%s, queryCols:%d == expect:%d"
%
(
self
.
sql
,
self
.
queryCols
,
expectCols
))
else
:
caller
=
inspect
.
getframeinfo
(
inspect
.
stack
()[
1
][
0
])
args
=
(
caller
.
filename
,
caller
.
lineno
,
self
.
sql
,
self
.
queryCols
,
expectCols
)
tdLog
.
exit
(
"%s(%d) failed: sql:%s, queryCols:%d != expect:%d"
%
args
)
def
checkRowCol
(
self
,
row
,
col
):
caller
=
inspect
.
getframeinfo
(
inspect
.
stack
()[
2
][
0
])
if
row
<
0
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录