Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
70042a91
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
70042a91
编写于
5月 18, 2022
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more data format
上级
00d346d5
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
48 addition
and
2 deletion
+48
-2
include/common/tdataformat.h
include/common/tdataformat.h
+2
-1
source/common/src/tdataformat.c
source/common/src/tdataformat.c
+46
-1
未找到文件。
include/common/tdataformat.h
浏览文件 @
70042a91
...
...
@@ -61,7 +61,8 @@ int32_t tTSRowBuilderGetRow(STSRowBuilder *pBuilder, const STSRow2 **ppRow);
// STag
int32_t
tTagNew
(
STagVal
*
pTagVals
,
int16_t
nTag
,
STag
**
ppTag
);
void
tTagFree
(
STag
*
pTag
);
void
tTagGet
(
STag
*
pTag
,
int16_t
cid
,
int8_t
type
,
uint8_t
**
ppData
,
int32_t
*
nData
);
int32_t
tTagSet
(
STag
*
pTag
,
SSchema
*
pSchema
,
int32_t
nCols
,
int
iCol
,
uint8_t
*
pData
,
uint32_t
nData
,
STag
**
ppTag
);
void
tTagGet
(
STag
*
pTag
,
int16_t
cid
,
int8_t
type
,
uint8_t
**
ppData
,
uint32_t
*
nData
);
int32_t
tEncodeTag
(
SEncoder
*
pEncoder
,
const
STag
*
pTag
);
int32_t
tDecodeTag
(
SDecoder
*
pDecoder
,
const
STag
**
ppTag
);
...
...
source/common/src/tdataformat.c
浏览文件 @
70042a91
...
...
@@ -581,7 +581,52 @@ void tTagFree(STag *pTag) {
if
(
pTag
)
taosMemoryFree
(
pTag
);
}
void
tTagGet
(
STag
*
pTag
,
int16_t
cid
,
int8_t
type
,
uint8_t
**
ppData
,
int32_t
*
nData
)
{
int32_t
tTagSet
(
STag
*
pTag
,
SSchema
*
pSchema
,
int32_t
nCols
,
int
iCol
,
uint8_t
*
pData
,
uint32_t
nData
,
STag
**
ppTag
)
{
STagVal
*
pTagVals
;
int16_t
nTags
=
0
;
SSchema
*
pColumn
;
uint8_t
*
p
;
uint32_t
n
;
pTagVals
=
(
STagVal
*
)
taosMemoryMalloc
(
sizeof
(
*
pTagVals
)
*
nCols
);
if
(
pTagVals
==
NULL
)
{
terrno
=
TSDB_CODE_OUT_OF_MEMORY
;
return
-
1
;
}
for
(
int32_t
i
=
0
;
i
<
nCols
;
i
++
)
{
pColumn
=
&
pSchema
[
i
];
if
(
i
==
iCol
)
{
p
=
pData
;
n
=
nData
;
}
else
{
tTagGet
(
pTag
,
pColumn
->
colId
,
pColumn
->
type
,
&
p
,
&
n
);
}
if
(
p
==
NULL
)
continue
;
ASSERT
(
IS_VAR_DATA_TYPE
(
pColumn
->
type
)
||
n
==
pColumn
->
bytes
);
pTagVals
[
nTags
].
cid
=
pColumn
->
colId
;
pTagVals
[
nTags
].
type
=
pColumn
->
type
;
pTagVals
[
nTags
].
nData
=
n
;
pTagVals
[
nTags
].
pData
=
p
;
nTags
++
;
}
// create new tag
if
(
tTagNew
(
pTagVals
,
nTags
,
ppTag
)
<
0
)
{
taosMemoryFree
(
pTagVals
);
return
-
1
;
}
taosMemoryFree
(
pTagVals
);
return
0
;
}
void
tTagGet
(
STag
*
pTag
,
int16_t
cid
,
int8_t
type
,
uint8_t
**
ppData
,
uint32_t
*
nData
)
{
STagIdx
*
pTagIdx
=
bsearch
(
&
((
STagIdx
){.
cid
=
cid
}),
pTag
->
idx
,
pTag
->
nTag
,
sizeof
(
STagIdx
),
tTagIdxCmprFn
);
if
(
pTagIdx
==
NULL
)
{
*
ppData
=
NULL
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录