Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
032cea14
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看板
未验证
提交
032cea14
编写于
8月 20, 2021
作者:
H
Hongze Cheng
提交者:
GitHub
8月 20, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #7467 from taosdata/fix/TD-6207-develop
Fix/td 6207 develop
上级
9f96559a
909e5732
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
19 addition
and
7 deletion
+19
-7
.gitignore
.gitignore
+1
-0
src/common/src/tdataformat.c
src/common/src/tdataformat.c
+1
-0
src/tsdb/src/tsdbMeta.c
src/tsdb/src/tsdbMeta.c
+14
-5
src/util/src/tfunctional.c
src/util/src/tfunctional.c
+3
-2
未找到文件。
.gitignore
浏览文件 @
032cea14
build/
.ycm_extra_conf.py
.vscode/
.idea/
cmake-build-debug/
...
...
src/common/src/tdataformat.c
浏览文件 @
032cea14
...
...
@@ -517,6 +517,7 @@ void tdAppendMemRowToDataCol(SMemRow row, STSchema *pSchema, SDataCols *pCols, b
}
}
//TODO: refactor this function to eliminate additional memory copy
int
tdMergeDataCols
(
SDataCols
*
target
,
SDataCols
*
source
,
int
rowsToMerge
,
int
*
pOffset
,
bool
forceSetNull
)
{
ASSERT
(
rowsToMerge
>
0
&&
rowsToMerge
<=
source
->
numOfRows
);
ASSERT
(
target
->
numOfCols
==
source
->
numOfCols
);
...
...
src/tsdb/src/tsdbMeta.c
浏览文件 @
032cea14
...
...
@@ -1262,8 +1262,14 @@ static int tsdbEncodeTable(void **buf, STable *pTable) {
tlen
+=
taosEncodeFixedU64
(
buf
,
TABLE_SUID
(
pTable
));
tlen
+=
tdEncodeKVRow
(
buf
,
pTable
->
tagVal
);
}
else
{
tlen
+=
taosEncodeFixedU8
(
buf
,
(
uint8_t
)
taosArrayGetSize
(
pTable
->
schema
));
for
(
int
i
=
0
;
i
<
taosArrayGetSize
(
pTable
->
schema
);
i
++
)
{
uint32_t
arraySize
=
(
uint32_t
)
taosArrayGetSize
(
pTable
->
schema
);
if
(
arraySize
>
UINT8_MAX
)
{
tlen
+=
taosEncodeFixedU8
(
buf
,
0
);
tlen
+=
taosEncodeFixedU32
(
buf
,
arraySize
);
}
else
{
tlen
+=
taosEncodeFixedU8
(
buf
,
(
uint8_t
)
arraySize
);
}
for
(
uint32_t
i
=
0
;
i
<
arraySize
;
i
++
)
{
STSchema
*
pSchema
=
taosArrayGetP
(
pTable
->
schema
,
i
);
tlen
+=
tdEncodeSchema
(
buf
,
pSchema
);
}
...
...
@@ -1296,8 +1302,11 @@ static void *tsdbDecodeTable(void *buf, STable **pRTable) {
buf
=
taosDecodeFixedU64
(
buf
,
&
TABLE_SUID
(
pTable
));
buf
=
tdDecodeKVRow
(
buf
,
&
(
pTable
->
tagVal
));
}
else
{
uint8_t
nSchemas
;
buf
=
taosDecodeFixedU8
(
buf
,
&
nSchemas
);
uint32_t
nSchemas
=
0
;
buf
=
taosDecodeFixedU8
(
buf
,
(
uint8_t
*
)
&
nSchemas
);
if
(
nSchemas
==
0
)
{
buf
=
taosDecodeFixedU32
(
buf
,
&
nSchemas
);
}
for
(
int
i
=
0
;
i
<
nSchemas
;
i
++
)
{
STSchema
*
pSchema
;
buf
=
tdDecodeSchema
(
buf
,
&
pSchema
);
...
...
@@ -1497,4 +1506,4 @@ static void tsdbFreeTableSchema(STable *pTable) {
taosArrayDestroy
(
pTable
->
schema
);
}
}
\ No newline at end of file
}
src/util/src/tfunctional.c
浏览文件 @
032cea14
...
...
@@ -14,23 +14,24 @@
*/
#include "tfunctional.h"
#include "tarray.h"
tGenericSavedFunc
*
genericSavedFuncInit
(
GenericVaFunc
func
,
int
numOfArgs
)
{
tGenericSavedFunc
*
pSavedFunc
=
malloc
(
sizeof
(
tGenericSavedFunc
)
+
numOfArgs
*
(
sizeof
(
void
*
)));
if
(
pSavedFunc
==
NULL
)
return
NULL
;
pSavedFunc
->
func
=
func
;
return
pSavedFunc
;
}
tI32SavedFunc
*
i32SavedFuncInit
(
I32VaFunc
func
,
int
numOfArgs
)
{
tI32SavedFunc
*
pSavedFunc
=
malloc
(
sizeof
(
tI32SavedFunc
)
+
numOfArgs
*
sizeof
(
void
*
));
if
(
pSavedFunc
==
NULL
)
return
NULL
;
pSavedFunc
->
func
=
func
;
return
pSavedFunc
;
}
tVoidSavedFunc
*
voidSavedFuncInit
(
VoidVaFunc
func
,
int
numOfArgs
)
{
tVoidSavedFunc
*
pSavedFunc
=
malloc
(
sizeof
(
tVoidSavedFunc
)
+
numOfArgs
*
sizeof
(
void
*
));
if
(
pSavedFunc
==
NULL
)
return
NULL
;
pSavedFunc
->
func
=
func
;
return
pSavedFunc
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录