Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
e558069a
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,发现更多精彩内容 >>
提交
e558069a
编写于
12月 29, 2021
作者:
C
Cary Xu
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'develop' of github.com:taosdata/TDengine into develop
上级
524abe35
bb714930
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
179 addition
and
2 deletion
+179
-2
src/util/src/tlosertree.c
src/util/src/tlosertree.c
+1
-1
tests/system-test/1-insert/Null_tag_Line_insert.py
tests/system-test/1-insert/Null_tag_Line_insert.py
+177
-0
tests/system-test/fulltest-insert.sh
tests/system-test/fulltest-insert.sh
+1
-1
未找到文件。
src/util/src/tlosertree.c
浏览文件 @
e558069a
...
...
@@ -101,7 +101,7 @@ void tLoserTreeAdjust(SLoserTreeInfo* pTree, int32_t idx) {
* but the first element in SLoserTreeNode is int32_t
* and the comparFn get data as *(int32_t*)(void *), so it is just ok.
*/
int32_t
ret
=
pTree
->
comparFn
(
&
pCur
,
&
kLeaf
,
pTree
->
param
);
int32_t
ret
=
pTree
->
comparFn
(
pCur
,
&
kLeaf
,
pTree
->
param
);
if
(
ret
<
0
)
{
SLoserTreeNode
t
=
pTree
->
pNode
[
parentId
];
pTree
->
pNode
[
parentId
]
=
kLeaf
;
...
...
tests/system-test/1-insert/Null_tag_Line_insert.py
0 → 100644
浏览文件 @
e558069a
###################################################################
# Copyright (c) 2021 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
,
os
import
time
import
taos
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
from
util.dnodes
import
*
from
util.types
import
TDSmlProtocolType
,
TDSmlTimestampType
class
TDTestCase
():
updatecfgDict
=
{
"smlTagNullName"
,
"setname"
}
# add extra client params
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
self
.
_conn
=
conn
def
caseDescription
(
self
):
'''
case1 <wenzhouwww>: [TD-11436] : this is an test case for line proto no tag insert into TDengine .
'''
return
def
getBuildPath
(
self
,
tool
=
"taosd"
):
buildPath
=
""
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
((
tool
)
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
no_tag_single_line_insert
(
self
,
name
):
self
.
name
=
name
lines3
=
[
"sti c1=4i64,c3=L
\"
passit
\"
,c2=false,c4=4f64 1626006833639000000"
,
"sti c1=3i64,c3=L
\"
passitagin
\"
,c2=true,c4=5f64,c5=5f64 1626006833640000000"
]
code
=
self
.
_conn
.
schemaless_insert
(
lines3
,
TDSmlProtocolType
.
LINE
.
value
,
TDSmlTimestampType
.
NANO_SECOND
.
value
)
print
(
"schemaless_insert result {}"
.
format
(
code
))
tdSql
.
query
(
'select * from sti'
)
tdSql
.
checkRows
(
2
)
tdSql
.
query
(
'select tbname from sti'
)
tdSql
.
checkRows
(
1
)
col_names
=
tdSql
.
getResult
(
"describe sti"
)
if
col_names
[
-
1
][
0
]
==
self
.
name
:
tdLog
.
info
(
" ====================get expected tag name ==============="
)
else
:
tdLog
.
exit
(
"======================error occured for null tag=================="
)
def
no_tag_mulit_line_insert
(
self
,
name
):
lines3
=
[
"sti c1=4i64,c3=L
\"
passit
\"
,c2=false,c4=4f64 1626006833639000000"
,
"sti c1=3i64,c3=L
\"
passitagin
\"
,c2=true,c4=5f64,c5=5f64 1626006833640000000"
]
code
=
self
.
_conn
.
schemaless_insert
(
lines3
,
TDSmlProtocolType
.
LINE
.
value
,
TDSmlTimestampType
.
NANO_SECOND
.
value
)
print
(
"schemaless_insert result {}"
.
format
(
code
))
tdSql
.
query
(
'select * from sti'
)
tdSql
.
checkRows
(
2
)
tdSql
.
query
(
'select tbname from sti'
)
tdSql
.
checkRows
(
1
)
col_names
=
tdSql
.
getResult
(
"describe sti"
)
if
col_names
[
-
1
][
0
]
==
self
.
name
:
tdLog
.
info
(
" ====================get expected tag name ==============="
)
else
:
tdLog
.
exit
(
"======================error occured for null tag=================="
)
def
part_tag_single_insert
(
self
,
name
):
lines5
=
[
"sti,t3=1 c1=4i64,c3=L
\"
passit
\"
,c2=false,c4=4f64 1626006833639050000"
,
"sti,t1=abc c1=3i64,c3=L
\"
passitagin
\"
,c2=true,c4=5f64,c5=5f64 1626006833640050000"
,
"sti,t2=abc c1=3i64,c3=L
\"
passitagin
\"
,c4=5f64,c5=5f64,c6=true 1626006833640050000"
]
code
=
self
.
_conn
.
schemaless_insert
([
lines5
[
0
]
],
TDSmlProtocolType
.
LINE
.
value
,
TDSmlTimestampType
.
NANO_SECOND
.
value
)
print
(
"schemaless_insert result {}"
.
format
(
code
))
code
=
self
.
_conn
.
schemaless_insert
([
lines5
[
1
]
],
TDSmlProtocolType
.
LINE
.
value
,
TDSmlTimestampType
.
NANO_SECOND
.
value
)
print
(
"schemaless_insert result {}"
.
format
(
code
))
code
=
self
.
_conn
.
schemaless_insert
([
lines5
[
2
]
],
TDSmlProtocolType
.
LINE
.
value
,
TDSmlTimestampType
.
NANO_SECOND
.
value
)
print
(
"schemaless_insert result {}"
.
format
(
code
))
tdSql
.
query
(
'select * from sti'
)
tdSql
.
checkRows
(
5
)
tdSql
.
checkData
(
4
,
3
,
None
)
tdSql
.
checkData
(
4
,
6
,
True
)
tdSql
.
checkData
(
2
,
8
,
"1"
)
tdSql
.
checkData
(
3
,
9
,
"abc"
)
tdSql
.
query
(
'select tbname from sti'
)
tdSql
.
checkRows
(
4
)
col_names
=
tdSql
.
getResult
(
"describe sti"
)
if
col_names
[
-
4
][
0
]
==
self
.
name
and
col_names
[
-
3
][
0
]
==
"t3"
and
col_names
[
-
2
][
0
]
==
"t1"
and
col_names
[
-
1
][
0
]
==
"t2"
:
tdLog
.
info
(
" ====================get expected tag name ==============="
)
else
:
tdLog
.
exit
(
"======================error occured for null tag=================="
)
def
part_tag_multi_insert
(
self
,
name
):
lines6
=
[
"str c1=4i64,c3=L
\"
passit
\"
,c2=false,c4=4f64 1626006833639000000"
,
"str,t1=abc c1=3i64,c3=L
\"
passitagin
\"
,c2=true,c4=5f64,c5=5f64 1626006833640000000"
,
"str,t2=abc c1=3i64,c3=L
\"
passitagin
\"
,c4=5f64,c5=5f64,c6=true 1626006833640000000"
]
code
=
self
.
_conn
.
schemaless_insert
(
lines6
,
TDSmlProtocolType
.
LINE
.
value
,
TDSmlTimestampType
.
NANO_SECOND
.
value
)
print
(
"schemaless_insert result {}"
.
format
(
code
))
tdSql
.
query
(
'select * from str'
)
tdSql
.
checkRows
(
3
)
tdSql
.
checkData
(
0
,
3
,
True
)
tdSql
.
checkData
(
1
,
3
,
None
)
tdSql
.
checkData
(
1
,
6
,
True
)
tdSql
.
checkData
(
0
,
8
,
"abc"
)
tdSql
.
checkData
(
1
,
9
,
"abc"
)
tdSql
.
query
(
'select tbname from str'
)
tdSql
.
checkRows
(
3
)
col_names
=
tdSql
.
getResult
(
"describe str"
)
if
col_names
[
-
3
][
0
]
==
self
.
name
and
col_names
[
-
2
][
0
]
==
"t1"
and
col_names
[
-
1
][
0
]
==
"t2"
:
tdLog
.
info
(
" ====================get expected tag name ==============="
)
else
:
tdLog
.
exit
(
"======================error occured for null tag=================="
)
def
run
(
self
):
print
(
"running {}"
.
format
(
__file__
))
tdSql
.
execute
(
"drop database if exists test"
)
tdSql
.
execute
(
"create database if not exists test precision 'us'"
)
tdSql
.
execute
(
'use test'
)
self
.
no_tag_single_line_insert
(
"_tag_null"
)
self
.
no_tag_mulit_line_insert
(
"_tag_null"
)
self
.
part_tag_single_insert
(
"_tag_null"
)
self
.
part_tag_multi_insert
(
"_tag_null"
)
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
tests/system-test/fulltest-insert.sh
浏览文件 @
e558069a
python3 test.py
-f
1-insert/TD-11970.py
python3 test.py
-f
1-insert/stmt_error.py
python3 test.py
-f
1-insert/Null_tag_Line_insert.py
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录