Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
5eca4ebd
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看板
提交
5eca4ebd
编写于
6月 18, 2021
作者:
L
lichuang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-4352]refactor duplicate insert new table actions to function
上级
fe05c1be
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
27 addition
and
18 deletion
+27
-18
src/tsdb/src/tsdbMeta.c
src/tsdb/src/tsdbMeta.c
+27
-18
未找到文件。
src/tsdb/src/tsdbMeta.c
浏览文件 @
5eca4ebd
...
...
@@ -44,6 +44,7 @@ static int tsdbRemoveTableFromStore(STsdbRepo *pRepo, STable *pTable);
static
int
tsdbRmTableFromMeta
(
STsdbRepo
*
pRepo
,
STable
*
pTable
);
static
int
tsdbAdjustMetaTables
(
STsdbRepo
*
pRepo
,
int
tid
);
static
int
tsdbCheckTableTagVal
(
SKVRow
*
pKVRow
,
STSchema
*
pSchema
);
static
int
tsdbInsertNewTableAction
(
STsdbRepo
*
pRepo
,
STable
*
pTable
);
// ------------------ OUTER FUNCTIONS ------------------
int
tsdbCreateTable
(
STsdbRepo
*
repo
,
STableCfg
*
pCfg
)
{
...
...
@@ -127,21 +128,16 @@ int tsdbCreateTable(STsdbRepo *repo, STableCfg *pCfg) {
tsdbUnlockRepoMeta
(
pRepo
);
// Write to memtable action
// TODO: refactor duplicate codes
int
tlen
=
0
;
void
*
pBuf
=
NULL
;
if
(
newSuper
||
superChanged
)
{
tlen
=
tsdbGetTableEncodeSize
(
TSDB_UPDATE_META
,
super
);
pBuf
=
tsdbAllocBytes
(
pRepo
,
tlen
);
if
(
pBuf
==
NULL
)
goto
_err
;
void
*
tBuf
=
tsdbInsertTableAct
(
pRepo
,
TSDB_UPDATE_META
,
pBuf
,
super
);
ASSERT
(
POINTER_DISTANCE
(
tBuf
,
pBuf
)
==
tlen
);
// add insert new super table action
if
(
tsdbInsertNewTableAction
(
pRepo
,
super
)
!=
0
)
{
goto
_err
;
}
}
// add insert new table action
if
(
tsdbInsertNewTableAction
(
pRepo
,
table
)
!=
0
)
{
goto
_err
;
}
tlen
=
tsdbGetTableEncodeSize
(
TSDB_UPDATE_META
,
table
);
pBuf
=
tsdbAllocBytes
(
pRepo
,
tlen
);
if
(
pBuf
==
NULL
)
goto
_err
;
void
*
tBuf
=
tsdbInsertTableAct
(
pRepo
,
TSDB_UPDATE_META
,
pBuf
,
table
);
ASSERT
(
POINTER_DISTANCE
(
tBuf
,
pBuf
)
==
tlen
);
if
(
tsdbCheckCommit
(
pRepo
)
<
0
)
return
-
1
;
...
...
@@ -382,7 +378,7 @@ int tsdbUpdateTableTagValue(STsdbRepo *repo, SUpdateTableTagValMsg *pMsg) {
tdDestroyTSchemaBuilder
(
&
schemaBuilder
);
}
// Chage in memory
// Cha
n
ge in memory
if
(
pNewSchema
!=
NULL
)
{
// change super table tag schema
TSDB_WLOCK_TABLE
(
pTable
->
pSuper
);
STSchema
*
pOldSchema
=
pTable
->
pSuper
->
tagSchema
;
...
...
@@ -425,6 +421,21 @@ int tsdbUpdateTableTagValue(STsdbRepo *repo, SUpdateTableTagValMsg *pMsg) {
}
// ------------------ INTERNAL FUNCTIONS ------------------
static
int
tsdbInsertNewTableAction
(
STsdbRepo
*
pRepo
,
STable
*
pTable
)
{
int
tlen
=
0
;
void
*
pBuf
=
NULL
;
tlen
=
tsdbGetTableEncodeSize
(
TSDB_UPDATE_META
,
pTable
);
pBuf
=
tsdbAllocBytes
(
pRepo
,
tlen
);
if
(
pBuf
==
NULL
)
{
return
-
1
;
}
void
*
tBuf
=
tsdbInsertTableAct
(
pRepo
,
TSDB_UPDATE_META
,
pBuf
,
pTable
);
ASSERT
(
POINTER_DISTANCE
(
tBuf
,
pBuf
)
==
tlen
);
return
0
;
}
STsdbMeta
*
tsdbNewMeta
(
STsdbCfg
*
pCfg
)
{
STsdbMeta
*
pMeta
=
(
STsdbMeta
*
)
calloc
(
1
,
sizeof
(
*
pMeta
));
if
(
pMeta
==
NULL
)
{
...
...
@@ -616,6 +627,7 @@ int16_t tsdbGetLastColumnsIndexByColId(STable* pTable, int16_t colId) {
if
(
pTable
->
lastCols
==
NULL
)
{
return
-
1
;
}
// TODO: use binary search instead
for
(
int16_t
i
=
0
;
i
<
pTable
->
maxColNum
;
++
i
)
{
if
(
pTable
->
lastCols
[
i
].
colId
==
colId
)
{
return
i
;
...
...
@@ -740,10 +752,7 @@ void tsdbUpdateTableSchema(STsdbRepo *pRepo, STable *pTable, STSchema *pSchema,
TSDB_WUNLOCK_TABLE
(
pCTable
);
if
(
insertAct
)
{
int
tlen
=
tsdbGetTableEncodeSize
(
TSDB_UPDATE_META
,
pCTable
);
void
*
buf
=
tsdbAllocBytes
(
pRepo
,
tlen
);
ASSERT
(
buf
!=
NULL
);
tsdbInsertTableAct
(
pRepo
,
TSDB_UPDATE_META
,
buf
,
pCTable
);
ASSERT
(
tsdbInsertNewTableAction
(
pRepo
,
pCTable
)
==
0
);
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录