Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
2439c345
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
2439c345
编写于
12月 30, 2022
作者:
A
Alex Duan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
enh: clear assert remove tbuffer.h
上级
70bc3fbb
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
2 addition
and
6 deletion
+2
-6
include/common/trow.h
include/common/trow.h
+0
-1
include/libs/function/function.h
include/libs/function/function.h
+0
-1
source/dnode/mnode/impl/src/mndTelem.c
source/dnode/mnode/impl/src/mndTelem.c
+0
-1
source/libs/executor/inc/executil.h
source/libs/executor/inc/executil.h
+0
-1
source/libs/function/src/tfunctionInt.c
source/libs/function/src/tfunctionInt.c
+0
-1
source/util/src/trbtree.c
source/util/src/trbtree.c
+1
-1
source/util/src/tutil.c
source/util/src/tutil.c
+1
-0
未找到文件。
include/common/trow.h
浏览文件 @
2439c345
...
@@ -20,7 +20,6 @@
...
@@ -20,7 +20,6 @@
#include "talgo.h"
#include "talgo.h"
#include "taosdef.h"
#include "taosdef.h"
#include "taoserror.h"
#include "taoserror.h"
#include "tbuffer.h"
#include "tdataformat.h"
#include "tdataformat.h"
#include "tdef.h"
#include "tdef.h"
#include "ttypes.h"
#include "ttypes.h"
...
...
include/libs/function/function.h
浏览文件 @
2439c345
...
@@ -20,7 +20,6 @@
...
@@ -20,7 +20,6 @@
extern
"C"
{
extern
"C"
{
#endif
#endif
#include "tbuffer.h"
#include "tcommon.h"
#include "tcommon.h"
#include "tvariant.h"
#include "tvariant.h"
...
...
source/dnode/mnode/impl/src/mndTelem.c
浏览文件 @
2439c345
...
@@ -17,7 +17,6 @@
...
@@ -17,7 +17,6 @@
#include "mndTelem.h"
#include "mndTelem.h"
#include "mndCluster.h"
#include "mndCluster.h"
#include "mndSync.h"
#include "mndSync.h"
#include "tbuffer.h"
#include "thttp.h"
#include "thttp.h"
#include "tjson.h"
#include "tjson.h"
...
...
source/libs/executor/inc/executil.h
浏览文件 @
2439c345
...
@@ -18,7 +18,6 @@
...
@@ -18,7 +18,6 @@
#include "function.h"
#include "function.h"
#include "nodes.h"
#include "nodes.h"
#include "plannodes.h"
#include "plannodes.h"
#include "tbuffer.h"
#include "tcommon.h"
#include "tcommon.h"
#include "tpagedbuf.h"
#include "tpagedbuf.h"
#include "tsimplehash.h"
#include "tsimplehash.h"
...
...
source/libs/function/src/tfunctionInt.c
浏览文件 @
2439c345
...
@@ -20,7 +20,6 @@
...
@@ -20,7 +20,6 @@
#include "ttypes.h"
#include "ttypes.h"
#include "function.h"
#include "function.h"
#include "tbuffer.h"
#include "tcompression.h"
#include "tcompression.h"
#include "tdatablock.h"
#include "tdatablock.h"
#include "tfunctionInt.h"
#include "tfunctionInt.h"
...
...
source/util/src/trbtree.c
浏览文件 @
2439c345
...
@@ -289,7 +289,7 @@ static void rbtree_delete_fixup(rbtree_t *rbtree, rbnode_t *child, rbnode_t *chi
...
@@ -289,7 +289,7 @@ static void rbtree_delete_fixup(rbtree_t *rbtree, rbnode_t *child, rbnode_t *chi
sibling
->
color
=
child_parent
->
color
;
sibling
->
color
=
child_parent
->
color
;
child_parent
->
color
=
BLACK
;
child_parent
->
color
=
BLACK
;
if
(
child_parent
->
right
==
child
)
{
if
(
child_parent
->
right
==
child
)
{
ASSERT
(
sibling
->
left
->
color
==
RED
,
"slibing->left->color=%d not equal RED"
,
sibling
->
left
->
color
);
ASSERT
S
(
sibling
->
left
->
color
==
RED
,
"slibing->left->color=%d not equal RED"
,
sibling
->
left
->
color
);
sibling
->
left
->
color
=
BLACK
;
sibling
->
left
->
color
=
BLACK
;
rbtree_rotate_right
(
rbtree
,
child_parent
);
rbtree_rotate_right
(
rbtree
,
child_parent
);
}
else
{
}
else
{
...
...
source/util/src/tutil.c
浏览文件 @
2439c345
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
#define _DEFAULT_SOURCE
#define _DEFAULT_SOURCE
#include "tutil.h"
#include "tutil.h"
#include "tlog.h"
void
*
tmemmem
(
const
char
*
haystack
,
int32_t
hlen
,
const
char
*
needle
,
int32_t
nlen
)
{
void
*
tmemmem
(
const
char
*
haystack
,
int32_t
hlen
,
const
char
*
needle
,
int32_t
nlen
)
{
const
char
*
limit
;
const
char
*
limit
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录