Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
483809b3
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看板
提交
483809b3
编写于
12月 28, 2021
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more
上级
8f9329ea
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
38 addition
and
1 deletion
+38
-1
include/dnode/vnode/meta/meta.h
include/dnode/vnode/meta/meta.h
+4
-1
include/util/tmacro.h
include/util/tmacro.h
+2
-0
source/dnode/vnode/impl/src/vnodeQuery.c
source/dnode/vnode/impl/src/vnodeQuery.c
+16
-0
source/dnode/vnode/meta/src/metaBDBImpl.c
source/dnode/vnode/meta/src/metaBDBImpl.c
+16
-0
未找到文件。
include/dnode/vnode/meta/meta.h
浏览文件 @
483809b3
...
...
@@ -18,8 +18,8 @@
#include "mallocator.h"
#include "os.h"
#include "trow.h"
#include "tmsg.h"
#include "trow.h"
#ifdef __cplusplus
extern
"C"
{
...
...
@@ -47,6 +47,9 @@ int metaCreateTable(SMeta *pMeta, STbCfg *pTbCfg);
int
metaDropTable
(
SMeta
*
pMeta
,
tb_uid_t
uid
);
int
metaCommit
(
SMeta
*
pMeta
);
// For Query
int
metaGetTableInfo
(
SMeta
*
pMeta
,
const
char
*
tbname
,
STableMetaMsg
**
ppMsg
);
// Options
void
metaOptionsInit
(
SMetaCfg
*
pMetaCfg
);
void
metaOptionsClear
(
SMetaCfg
*
pMetaCfg
);
...
...
include/util/tmacro.h
浏览文件 @
483809b3
...
...
@@ -35,6 +35,8 @@ typedef int8_t td_mode_flag_t;
#define TD_CHECK_AND_SET_MOD_CLEAR(FLAG) atomic_val_compare_exchange_8((FLAG), TD_MOD_UNCLEARD, TD_MOD_CLEARD)
#define TD_IS_NULL(PTR) ((PTR) == NULL)
#ifdef __cplusplus
}
#endif
...
...
source/dnode/vnode/impl/src/vnodeQuery.c
浏览文件 @
483809b3
...
...
@@ -32,6 +32,22 @@ int vnodeProcessFetchReq(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp) {
static
int
vnodeGetTableMeta
(
SVnode
*
pVnode
,
SRpcMsg
*
pMsg
,
SRpcMsg
**
pRsp
)
{
STableInfoMsg
*
pReq
=
(
STableInfoMsg
*
)(
pMsg
->
pCont
);
STableMetaMsg
*
pRspMsg
;
int
ret
;
if
(
metaGetTableInfo
(
pVnode
->
pMeta
,
pReq
->
tableFname
,
&
pRspMsg
)
<
0
)
{
return
-
1
;
}
*
pRsp
=
malloc
(
sizeof
(
SRpcMsg
));
if
(
TD_IS_NULL
(
*
pRsp
))
{
terrno
=
TSDB_CODE_OUT_OF_MEMORY
;
free
(
pMsg
);
return
-
1
;
}
// TODO
(
*
pRsp
)
->
pCont
=
pRspMsg
;
return
0
;
}
\ No newline at end of file
source/dnode/vnode/meta/src/metaBDBImpl.c
浏览文件 @
483809b3
...
...
@@ -428,4 +428,20 @@ static void metaClearTbCfg(STbCfg *pTbCfg) {
}
else
if
(
pTbCfg
->
type
==
META_CHILD_TABLE
)
{
tfree
(
pTbCfg
->
ctbCfg
.
pTag
);
}
}
/* ------------------------ FOR QUERY ------------------------ */
int
metaGetTableInfo
(
SMeta
*
pMeta
,
const
char
*
tbname
,
STableMetaMsg
**
ppMsg
)
{
DBT
key
=
{
0
};
DBT
value
=
{
0
};
SMetaDB
*
pMetaDB
=
pMeta
->
pDB
;
key
.
data
=
tbname
;
key
.
size
=
strlen
(
tbname
)
+
1
;
pMetaDB
->
pNameIdx
->
get
(
pMetaDB
->
pNameIdx
,
NULL
,
&
key
,
&
value
,
0
);
// TODO: construct the message body
return
0
;
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录