Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
8d3fe539
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,发现更多精彩内容 >>
未验证
提交
8d3fe539
编写于
8月 16, 2021
作者:
H
Hongze Cheng
提交者:
GitHub
8月 16, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #7210 from taosdata/hotfix/td-5765
[TD-5765]<hotfix>:check max length when alter tag value
上级
449ea7a8
b86f44af
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
130 addition
and
0 deletion
+130
-0
src/client/src/tscSQLParser.c
src/client/src/tscSQLParser.c
+4
-0
tests/pytest/fulltest.sh
tests/pytest/fulltest.sh
+1
-0
tests/pytest/tag_lite/TestModifyTag.py
tests/pytest/tag_lite/TestModifyTag.py
+125
-0
未找到文件。
src/client/src/tscSQLParser.c
浏览文件 @
8d3fe539
...
...
@@ -5912,6 +5912,10 @@ int32_t setAlterTableInfo(SSqlObj* pSql, struct SSqlInfo* pInfo) {
tVariantListItem
*
pItem
=
taosArrayGet
(
pVarList
,
1
);
SSchema
*
pTagsSchema
=
tscGetTableColumnSchema
(
pTableMetaInfo
->
pTableMeta
,
columnIndex
.
columnIndex
);
if
(
IS_VAR_DATA_TYPE
(
pTagsSchema
->
type
)
&&
(
pItem
->
pVar
.
nLen
>
pTagsSchema
->
bytes
*
TSDB_NCHAR_SIZE
))
{
return
invalidOperationMsg
(
pMsg
,
msg14
);
}
pAlterSQL
->
tagData
.
data
=
calloc
(
1
,
pTagsSchema
->
bytes
*
TSDB_NCHAR_SIZE
+
VARSTR_HEADER_SIZE
);
if
(
tVariantDump
(
&
pItem
->
pVar
,
pAlterSQL
->
tagData
.
data
,
pTagsSchema
->
type
,
true
)
!=
TSDB_CODE_SUCCESS
)
{
...
...
tests/pytest/fulltest.sh
浏览文件 @
8d3fe539
...
...
@@ -76,6 +76,7 @@ python3 ./test.py -f tag_lite/set.py
python3 ./test.py
-f
tag_lite/smallint.py
python3 ./test.py
-f
tag_lite/tinyint.py
python3 ./test.py
-f
tag_lite/timestamp.py
python3 ./test.py
-f
tag_lite/TestModifyTag.py
#python3 ./test.py -f dbmgmt/database-name-boundary.py
python3 test.py
-f
dbmgmt/nanoSecondCheck.py
...
...
tests/pytest/tag_lite/TestModifyTag.py
0 → 100644
浏览文件 @
8d3fe539
###################################################################
# 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
import
os
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
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
self
.
ts
=
1625068800000000000
# this is timestamp "2021-07-01 00:00:00"
self
.
numberOfTables
=
10
self
.
numberOfRecords
=
100
def
checkCommunity
(
self
):
selfPath
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
if
(
"community"
in
selfPath
):
return
False
else
:
return
True
def
getBuildPath
(
self
):
selfPath
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
if
(
"community"
in
selfPath
):
projPath
=
selfPath
[:
selfPath
.
find
(
"community"
)]
else
:
projPath
=
selfPath
[:
selfPath
.
find
(
"tests"
)]
for
root
,
dirs
,
files
in
os
.
walk
(
projPath
):
if
(
"taosdump"
in
files
):
rootRealPath
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
root
))
if
(
"packaging"
not
in
rootRealPath
):
buildPath
=
root
[:
len
(
root
)
-
len
(
"/build/bin"
)]
break
return
buildPath
def
run
(
self
):
buildPath
=
self
.
getBuildPath
()
if
(
buildPath
==
""
):
tdLog
.
exit
(
"taosdump not found!"
)
else
:
tdLog
.
info
(
"taosdump found in %s"
%
buildPath
)
binPath
=
buildPath
+
"/build/bin/"
# basic test for alter tags
tdSql
.
execute
(
"create database tagdb "
)
tdSql
.
execute
(
" use tagdb"
)
tdSql
.
execute
(
"create table st (ts timestamp , a int) tags (tg1 binary(20), tg2 binary(20), tg3 binary(20))"
)
tdSql
.
execute
(
"insert into t using st (tg3, tg2, tg1) tags ('tg3', 'tg2', 'tg1') values (now, 1)"
)
tdSql
.
execute
(
"alter table t set tag tg1='newtg1'"
)
res
=
tdSql
.
getResult
(
"select tg1,tg2,tg3 from t"
)
if
res
==
[(
'newtg1'
,
'tg2'
,
'tg3'
)]:
tdLog
.
info
(
" alter tag check has pass!"
)
else
:
tdLog
.
info
(
" alter tag failed , please check !"
)
tdSql
.
error
(
"alter stable st modify tag tg2 binary(2)"
)
tdSql
.
execute
(
"alter stable st modify tag tg2 binary(30) "
)
tdSql
.
execute
(
"alter table t set tag tg2 = 'abcdefghijklmnopqrstuvwxyz1234'"
)
res
=
tdSql
.
getResult
(
"select tg1,tg2,tg3 from t"
)
if
res
==
[(
'newtg1'
,
'abcdefghijklmnopqrstuvwxyz1234'
,
'tg3'
)]:
tdLog
.
info
(
" alter tag check has pass!"
)
else
:
tdLog
.
info
(
" alter tag failed , please check !"
)
# test boundary about tags
tdSql
.
execute
(
"create stable stb1 (ts timestamp , a int) tags (tg1 binary(16374))"
)
tdSql
.
error
(
"create stable stb1 (ts timestamp , a int) tags (tg1 binary(16375))"
)
bound_sql
=
"create stable stb2 (ts timestamp , a int) tags (tg1 binary(10),"
for
i
in
range
(
127
):
bound_sql
+=
"tag"
+
str
(
i
)
+
" binary(10),"
sql1
=
bound_sql
[:
-
1
]
+
")"
tdSql
.
execute
(
sql1
)
sql2
=
bound_sql
[:
-
1
]
+
"tag127 binary(10))"
tdSql
.
error
(
sql2
)
tdSql
.
execute
(
"create stable stb3 (ts timestamp , a int) tags (tg1 nchar(4093))"
)
tdSql
.
error
(
"create stable stb3 (ts timestamp , a int) tags (tg1 nchar(4094))"
)
tdSql
.
execute
(
"create stable stb4 (ts timestamp , a int) tags (tg1 nchar(4093),tag2 binary(8))"
)
tdSql
.
error
(
"create stable stb4 (ts timestamp , a int) tags (tg1 nchar(4093),tag2 binary(9))"
)
tdSql
.
execute
(
"create stable stb5 (ts timestamp , a int) tags (tg1 nchar(4093),tag2 binary(4),tag3 binary(2))"
)
tdSql
.
error
(
"create stable stb5 (ts timestamp , a int) tags (tg1 nchar(4093),tag2 binary(4),tag3 binary(3))"
)
tdSql
.
execute
(
"create table stt (ts timestamp , a binary(100)) tags (tg1 binary(20), tg2 binary(20), tg3 binary(20))"
)
tdSql
.
execute
(
"insert into tt using stt (tg3, tg2, tg1) tags ('tg3', 'tg2', 'tg1') values (now, 1)"
)
tags
=
"t"
*
16337
sql3
=
"alter table tt set tag tg1="
+
"'"
+
tags
+
"'"
tdSql
.
error
(
sql3
)
tdSql
.
execute
(
"alter stable stt modify tag tg1 binary(16337)"
)
tdSql
.
execute
(
sql3
)
res
=
tdSql
.
getResult
(
"select tg1,tg2,tg3 from tt"
)
if
res
==
[(
tags
,
'tg2'
,
'tg3'
)]:
tdLog
.
info
(
" alter tag check has pass!"
)
else
:
tdLog
.
info
(
" alter tag failed , please check !"
)
os
.
system
(
"rm -rf ./tag_lite/TestModifyTag.py.sql"
)
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录