Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
15b18f4c
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
15b18f4c
编写于
2月 27, 2022
作者:
S
Shengliang Guan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
log
上级
ea43a849
变更
28
显示空白变更内容
内联
并排
Showing
28 changed file
with
27 addition
and
36 deletion
+27
-36
source/common/src/tdataformat.c
source/common/src/tdataformat.c
+1
-1
source/common/src/tglobal.c
source/common/src/tglobal.c
+0
-1
source/dnode/mgmt/daemon/inc/dmnInt.h
source/dnode/mgmt/daemon/inc/dmnInt.h
+1
-1
source/dnode/mgmt/impl/test/sut/inc/sut.h
source/dnode/mgmt/impl/test/sut/inc/sut.h
+1
-1
source/libs/index/test/fstUT.cc
source/libs/index/test/fstUT.cc
+1
-1
source/libs/transport/test/transUT.cc
source/libs/transport/test/transUT.cc
+1
-1
source/util/src/compare.c
source/util/src/compare.c
+1
-1
source/util/src/tcache.c
source/util/src/tcache.c
+1
-1
source/util/src/tcompression.c
source/util/src/tcompression.c
+1
-1
source/util/src/tconfig.c
source/util/src/tconfig.c
+1
-1
source/util/src/tfile.c
source/util/src/tfile.c
+1
-1
source/util/src/thash.c
source/util/src/thash.c
+1
-1
source/util/src/tidpool.c
source/util/src/tidpool.c
+1
-2
source/util/src/tlog.c
source/util/src/tlog.c
+1
-1
source/util/src/tlosertree.c
source/util/src/tlosertree.c
+1
-1
source/util/src/tmempool.c
source/util/src/tmempool.c
+1
-2
source/util/src/tpagedbuf.c
source/util/src/tpagedbuf.c
+1
-2
source/util/src/tqueue.c
source/util/src/tqueue.c
+1
-1
source/util/src/tref.c
source/util/src/tref.c
+2
-1
source/util/src/tsched.c
source/util/src/tsched.c
+1
-2
source/util/src/tskiplist.c
source/util/src/tskiplist.c
+1
-3
source/util/src/tstep.c
source/util/src/tstep.c
+1
-2
source/util/src/tthread.c
source/util/src/tthread.c
+1
-2
source/util/src/tversion.c
source/util/src/tversion.c
+0
-1
source/util/src/tworker.c
source/util/src/tworker.c
+1
-1
source/util/test/trefTest.c
source/util/test/trefTest.c
+1
-1
tools/shell/src/backup/tnettest.c
tools/shell/src/backup/tnettest.c
+1
-1
tools/shell/src/shellLinux.c
tools/shell/src/shellLinux.c
+1
-1
未找到文件。
source/common/src/tdataformat.c
浏览文件 @
15b18f4c
...
...
@@ -13,11 +13,11 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "tdataformat.h"
#include "ulog.h"
#include "talgo.h"
#include "tcoding.h"
#include "wchar.h"
#include "tarray.h"
#include "tlog.h"
static
void
dataColSetNEleNull
(
SDataCol
*
pCol
,
int
nEle
);
#if 0
...
...
source/common/src/tglobal.c
浏览文件 @
15b18f4c
...
...
@@ -24,7 +24,6 @@
#include "tglobal.h"
#include "tlog.h"
#include "tutil.h"
#include "ulog.h"
SConfig
*
tsCfg
=
NULL
;
...
...
source/dnode/mgmt/daemon/inc/dmnInt.h
浏览文件 @
15b18f4c
...
...
@@ -21,7 +21,7 @@
#include "dnode.h"
#include "taoserror.h"
#include "tglobal.h"
#include "
u
log.h"
#include "
t
log.h"
#include "version.h"
#ifdef __cplusplus
...
...
source/dnode/mgmt/impl/test/sut/inc/sut.h
浏览文件 @
15b18f4c
...
...
@@ -26,10 +26,10 @@
#include "tmsg.h"
#include "trpc.h"
#include "tthread.h"
#include "ulog.h"
#include "client.h"
#include "server.h"
#include "tlog.h"
class
Testbase
{
public:
...
...
source/libs/index/test/fstUT.cc
浏览文件 @
15b18f4c
...
...
@@ -15,7 +15,7 @@
#include "tglobal.h"
#include "tskiplist.h"
#include "tutil.h"
#include "
u
log.h"
#include "
t
log.h"
static
std
::
string
dir
=
"/tmp/index"
;
...
...
source/libs/transport/test/transUT.cc
浏览文件 @
15b18f4c
...
...
@@ -18,7 +18,7 @@
#include "tep.h"
#include "tglobal.h"
#include "trpc.h"
#include "
u
log.h"
#include "
t
log.h"
using
namespace
std
;
const
char
*
label
=
"APP"
;
...
...
source/util/src/compare.c
浏览文件 @
15b18f4c
...
...
@@ -22,7 +22,7 @@
#include "regex.h"
#include "thash.h"
#include "types.h"
#include "
u
log.h"
#include "
t
log.h"
#include "tdef.h"
#include "taos.h"
...
...
source/util/src/tcache.c
浏览文件 @
15b18f4c
...
...
@@ -15,7 +15,7 @@
#define _DEFAULT_SOURCE
#include "os.h"
#include "
u
log.h"
#include "
t
log.h"
#include "ttimer.h"
#include "tutil.h"
#include "tcache.h"
...
...
source/util/src/tcompression.c
浏览文件 @
15b18f4c
...
...
@@ -53,7 +53,7 @@
#include "td_sz.h"
#endif
#include "tcompression.h"
#include "
u
log.h"
#include "
t
log.h"
static
const
int
TEST_NUMBER
=
1
;
#define is_bigendian() ((*(char *)&TEST_NUMBER) == 0)
...
...
source/util/src/tconfig.c
浏览文件 @
15b18f4c
...
...
@@ -19,7 +19,7 @@
#include "tcfg.h"
#include "thash.h"
#include "tutil.h"
#include "
u
log.h"
#include "
t
log.h"
#define CFG_NAME_PRINT_LEN 24
#define CFG_SRC_PRINT_LEN 12
...
...
source/util/src/tfile.c
浏览文件 @
15b18f4c
...
...
@@ -18,7 +18,7 @@
#include "taoserror.h"
#include "tref.h"
#include "tutil.h"
#include "
u
log.h"
#include "
t
log.h"
static
int32_t
tsFileRsetId
=
-
1
;
...
...
source/util/src/thash.c
浏览文件 @
15b18f4c
...
...
@@ -15,7 +15,7 @@
#include "os.h"
#include "thash.h"
#include "
u
log.h"
#include "
t
log.h"
#include "taos.h"
#include "tdef.h"
...
...
source/util/src/tidpool.c
浏览文件 @
15b18f4c
...
...
@@ -13,8 +13,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "os.h"
#include "ulog.h"
#include "tlog.h"
typedef
struct
{
int
maxId
;
...
...
source/util/src/tlog.c
浏览文件 @
15b18f4c
...
...
@@ -15,7 +15,7 @@
#define _DEFAULT_SOURCE
#include "tutil.h"
#include "
u
log.h"
#include "
t
log.h"
#define LOG_MAX_LINE_SIZE (1000)
#define LOG_MAX_LINE_BUFFER_SIZE (LOG_MAX_LINE_SIZE + 10)
...
...
source/util/src/tlosertree.c
浏览文件 @
15b18f4c
...
...
@@ -14,7 +14,7 @@
*/
#include "os.h"
#include "
u
log.h"
#include "
t
log.h"
#include "tlosertree.h"
#include "taoserror.h"
...
...
source/util/src/tmempool.c
浏览文件 @
15b18f4c
...
...
@@ -13,8 +13,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "os.h"
#include "ulog.h"
#include "tlog.h"
#include "tmempool.h"
#include "tutil.h"
...
...
source/util/src/tpagedbuf.c
浏览文件 @
15b18f4c
#include "os.h"
#include "ulog.h"
#include "tlog.h"
#include "tpagedbuf.h"
#include "taoserror.h"
#include "tcompression.h"
...
...
source/util/src/tqueue.c
浏览文件 @
15b18f4c
...
...
@@ -16,7 +16,7 @@
#define _DEFAULT_SOURCE
#include "tqueue.h"
#include "taoserror.h"
#include "
u
log.h"
#include "
t
log.h"
typedef
struct
STaosQnode
STaosQnode
;
...
...
source/util/src/tref.c
浏览文件 @
15b18f4c
...
...
@@ -14,8 +14,9 @@
*/
#include "os.h"
#include "taoserror.h"
#include "
u
log.h"
#include "
t
log.h"
#include "tutil.h"
#define TSDB_REF_OBJECTS 50
...
...
source/util/src/tsched.c
浏览文件 @
15b18f4c
...
...
@@ -13,10 +13,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "os.h"
#include "tdef.h"
#include "tutil.h"
#include "
u
log.h"
#include "
t
log.h"
#include "tsched.h"
#include "ttimer.h"
...
...
source/util/src/tskiplist.c
浏览文件 @
15b18f4c
...
...
@@ -14,12 +14,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "os.h"
#include "compare.h"
#include "tskiplist.h"
#include "tutil.h"
#include "
u
log.h"
#include "
t
log.h"
static
int
initForwardBackwardPtr
(
SSkipList
*
pSkipList
);
static
SSkipListNode
*
getPriorNode
(
SSkipList
*
pSkipList
,
const
char
*
val
,
int32_t
order
,
SSkipListNode
**
pCur
);
...
...
source/util/src/tstep.c
浏览文件 @
15b18f4c
...
...
@@ -14,8 +14,7 @@
*/
#define _DEFAULT_SOURCE
#include "os.h"
#include "ulog.h"
#include "tlog.h"
#include "taoserror.h"
#include "tstep.h"
...
...
source/util/src/tthread.c
浏览文件 @
15b18f4c
...
...
@@ -14,11 +14,10 @@
*/
#include "tthread.h"
#include "os.h"
#include "taoserror.h"
#include "tdef.h"
#include "tutil.h"
#include "
u
log.h"
#include "
t
log.h"
// create new thread
pthread_t
*
taosCreateThread
(
void
*
(
*
__start_routine
)(
void
*
),
void
*
param
)
{
...
...
source/util/src/tversion.c
浏览文件 @
15b18f4c
...
...
@@ -17,7 +17,6 @@
#include "os.h"
#include "taoserror.h"
#include "tdef.h"
#include "ulog.h"
int32_t
taosVersionStrToInt
(
const
char
*
vstr
,
int32_t
*
vint
)
{
if
(
vstr
==
NULL
)
{
...
...
source/util/src/tworker.c
浏览文件 @
15b18f4c
...
...
@@ -16,7 +16,7 @@
#define _DEFAULT_SOURCE
#include "tworker.h"
#include "taoserror.h"
#include "
u
log.h"
#include "
t
log.h"
typedef
void
*
(
*
ThreadFp
)(
void
*
param
);
...
...
source/util/test/trefTest.c
浏览文件 @
15b18f4c
...
...
@@ -8,7 +8,7 @@
#include "tlog.h"
#include "tglobal.h"
#include "taoserror.h"
#include "
u
log.h"
#include "
t
log.h"
typedef
struct
{
int
refNum
;
...
...
tools/shell/src/backup/tnettest.c
浏览文件 @
15b18f4c
...
...
@@ -18,7 +18,7 @@
#include "taosdef.h"
#include "tmsg.h"
#include "taoserror.h"
#include "t
u
log.h"
#include "tlog.h"
#include "tglobal.h"
#include "tsocket.h"
#include "trpc.h"
...
...
tools/shell/src/shellLinux.c
浏览文件 @
15b18f4c
...
...
@@ -19,7 +19,7 @@
#include "shell.h"
#include "shellCommand.h"
#include "tkey.h"
#include "
u
log.h"
#include "
t
log.h"
#include "version.h"
#include <wordexp.h>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录