Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
fd9feb1a
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看板
提交
fd9feb1a
编写于
12月 28, 2021
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more
上级
29e4a61b
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
40 addition
and
17 deletion
+40
-17
contrib/test/tdev/src/main.c
contrib/test/tdev/src/main.c
+26
-5
include/common/tmsg.h
include/common/tmsg.h
+7
-7
source/dnode/vnode/impl/src/vnodeQuery.c
source/dnode/vnode/impl/src/vnodeQuery.c
+7
-5
未找到文件。
contrib/test/tdev/src/main.c
浏览文件 @
fd9feb1a
...
...
@@ -25,10 +25,13 @@
POINTER_SHIFT(buf, sizeof(val)); \
})
#define tPutC(buf, val) \
({ \
((uint64_t *)buf)[0] = (val); \
POINTER_SHIFT(buf, sizeof(val)); \
#define tPutC(buf, val) \
({ \
if (buf) { \
((uint64_t *)buf)[0] = (val); \
POINTER_SHIFT(buf, sizeof(val)); \
} \
NULL; \
})
#define tPutD(buf, val) \
...
...
@@ -41,7 +44,14 @@
POINTER_SHIFT(buf, sizeof(val)); \
})
typedef
enum
{
A
,
B
,
C
,
D
}
T
;
static
inline
void
tPutE
(
void
**
buf
,
uint64_t
val
)
{
if
(
buf
)
{
((
uint64_t
*
)(
*
buf
))[
0
]
=
val
;
*
buf
=
POINTER_SHIFT
(
*
buf
,
sizeof
(
val
));
}
}
typedef
enum
{
A
,
B
,
C
,
D
,
E
}
T
;
static
void
func
(
T
t
)
{
uint64_t
val
=
198
;
...
...
@@ -81,6 +91,14 @@ static void func(T t) {
}
}
break
;
case
E
:
for
(
size_t
i
=
0
;
i
<
10
*
1024l
*
1024l
*
1024l
;
i
++
)
{
tPutE
(
&
pBuf
,
val
);
if
(
POINTER_DISTANCE
(
buf
,
pBuf
)
==
1024
)
{
pBuf
=
buf
;
}
}
break
;
default:
break
;
...
...
@@ -108,5 +126,8 @@ int main(int argc, char const *argv[]) {
func
(
D
);
uint64_t
t5
=
now
();
printf
(
"D: %ld
\n
"
,
t5
-
t4
);
func
(
E
);
uint64_t
t6
=
now
();
printf
(
"E: %ld
\n
"
,
t6
-
t5
);
return
0
;
}
include/common/tmsg.h
浏览文件 @
fd9feb1a
...
...
@@ -319,12 +319,12 @@ typedef struct SEpSet {
}
SEpSet
;
typedef
struct
{
int32_t
acctId
;
int64_t
clusterId
;
int32_t
connId
;
int8_t
superUser
;
int8_t
reserved
[
5
];
SEpSet
epSet
;
int32_t
acctId
;
int64_t
clusterId
;
int32_t
connId
;
int8_t
superUser
;
int8_t
reserved
[
5
];
SEpSet
epSet
;
}
SConnectRsp
;
typedef
struct
{
...
...
@@ -1129,7 +1129,7 @@ typedef struct SVCreateTbReq {
}
SVCreateTbReq
;
static
FORCE_INLINE
int
tSerializeSVCreateTbReq
(
void
**
buf
,
const
SVCreateTbReq
*
pReq
)
{
int
tlen
=
0
;
int
tlen
=
0
;
// uint8_t* pBuf = (uint8_t*)(*buf);
// if (TD_RT_ENDIAN() == TD_LITTLE_ENDIAN) {
...
...
source/dnode/vnode/impl/src/vnodeQuery.c
浏览文件 @
fd9feb1a
...
...
@@ -13,12 +13,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "vnodeDef.h"
#include "vnodeQuery.h"
#include "vnodeDef.h"
int
vnodeQueryOpen
(
SVnode
*
pVnode
)
{
return
qWorkerInit
(
NULL
,
&
pVnode
->
pQuery
);
}
int
vnodeQueryOpen
(
SVnode
*
pVnode
)
{
return
qWorkerInit
(
NULL
,
&
pVnode
->
pQuery
);
}
int
vnodeProcessQueryReq
(
SVnode
*
pVnode
,
SRpcMsg
*
pMsg
,
SRpcMsg
**
pRsp
)
{
vInfo
(
"query message is processed"
);
...
...
@@ -32,4 +30,8 @@ int vnodeProcessFetchReq(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp) {
return
0
;
}
static
int
vnodeGetTableMeta
(
SVnode
*
pVnode
,
SRpcMsg
*
pMsg
,
SRpcMsg
**
pRsp
)
{
STableInfoMsg
*
pReq
=
(
STableInfoMsg
*
)(
pMsg
->
pCont
);
// TODO
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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录