Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
234b9c86
T
TDengine
项目概览
慢慢CG
/
TDengine
与 Fork 源项目一致
Fork自
taosdata / TDengine
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
234b9c86
编写于
6月 17, 2020
作者:
H
Haojun Liao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[td-225] fix bugs when tag is NULL
上级
33d83cc5
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
29 addition
and
7 deletion
+29
-7
src/query/src/qExecutor.c
src/query/src/qExecutor.c
+12
-2
src/tsdb/src/tsdbRead.c
src/tsdb/src/tsdbRead.c
+15
-3
tests/script/general/parser/set_tag_vals.sim
tests/script/general/parser/set_tag_vals.sim
+2
-2
未找到文件。
src/query/src/qExecutor.c
浏览文件 @
234b9c86
...
...
@@ -2206,8 +2206,18 @@ static void doSetTagValueInParam(void *tsdb, STableId* pTableId, int32_t tagColI
}
if
(
type
==
TSDB_DATA_TYPE_BINARY
||
type
==
TSDB_DATA_TYPE_NCHAR
)
{
if
(
isNull
(
varDataVal
(
val
),
type
))
{
tag
->
nType
=
TSDB_DATA_TYPE_NULL
;
return
;
}
tVariantCreateFromBinary
(
tag
,
varDataVal
(
val
),
varDataLen
(
val
),
type
);
}
else
{
if
(
isNull
(
val
,
type
))
{
tag
->
nType
=
TSDB_DATA_TYPE_NULL
;
return
;
}
tVariantCreateFromBinary
(
tag
,
val
,
bytes
,
type
);
}
}
...
...
@@ -4285,12 +4295,12 @@ static void sequentialTableProcess(SQInfo *pQInfo) {
assert
(
taosArrayGetSize
(
s
)
>=
1
);
setTagVal
(
pRuntimeEnv
,
(
STableId
*
)
taosArrayGet
(
s
,
0
),
pQInfo
->
tsdb
);
if
(
isFirstLastRowQuery
(
pQuery
))
{
assert
(
taosArrayGetSize
(
s
)
==
1
);
}
taosArrayDestroy
(
s
);
// here we simply set the first table as current table
pQuery
->
current
=
((
SGroupItem
*
)
taosArrayGet
(
group
,
0
))
->
info
;
scanOneTableDataBlocks
(
pRuntimeEnv
,
pQuery
->
current
->
lastKey
);
...
...
src/tsdb/src/tsdbRead.c
浏览文件 @
234b9c86
...
...
@@ -1930,8 +1930,7 @@ int32_t tableGroupComparFn(const void *p1, const void *p2, const void *param) {
SColIndex
*
pColIndex
=
&
pTableGroupSupp
->
pCols
[
i
];
int32_t
colIndex
=
pColIndex
->
colIndex
;
assert
((
colIndex
>=
0
&&
colIndex
<
schemaNCols
(
pTableGroupSupp
->
pTagSchema
))
||
(
colIndex
==
TSDB_TBNAME_COLUMN_INDEX
));
assert
(
colIndex
>=
TSDB_TBNAME_COLUMN_INDEX
);
char
*
f1
=
NULL
;
char
*
f2
=
NULL
;
...
...
@@ -1950,7 +1949,20 @@ int32_t tableGroupComparFn(const void *p1, const void *p2, const void *param) {
f1
=
tdGetKVRowValOfCol
(
pTable1
->
tagVal
,
pCol
->
colId
);
f2
=
tdGetKVRowValOfCol
(
pTable2
->
tagVal
,
pCol
->
colId
);
}
// this tags value may be NULL
if
(
f1
==
NULL
&&
f2
==
NULL
)
{
continue
;
}
if
(
f1
==
NULL
)
{
return
-
1
;
}
if
(
f2
==
NULL
)
{
return
1
;
}
int32_t
ret
=
doCompare
(
f1
,
f2
,
type
,
bytes
);
if
(
ret
==
0
)
{
continue
;
...
...
tests/script/general/parser/set_tag_vals.sim
浏览文件 @
234b9c86
...
...
@@ -9,7 +9,7 @@ sql connect
$dbPrefix = db
$tbPrefix = tb
$stbPrefix = stb
$tbNum = 100
0
$tbNum = 100
$rowNum = 100
$totalNum = $tbNum * $rowNum
$ts0 = 1537146000000
...
...
@@ -26,7 +26,7 @@ $stb = $stbPrefix . $i
sql drop database $db -x step1
step1:
sql create database $db
print ====== create tables
print ====== create
$tbNum
tables
sql use $db
sql create table $stb (ts timestamp, c1 int, c2 bigint, c3 float, c4 double, c5 smallint, c6 tinyint, c7 bool, c8 binary(10), c9 nchar(10)) tags(t1 binary(9), t2 binary(8))
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录