Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
89a0dd76
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22017
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看板
提交
89a0dd76
编写于
12月 31, 2021
作者:
S
Shengliang Guan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test for create table
上级
fe96d9dc
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
14 addition
and
63 deletion
+14
-63
source/dnode/mnode/impl/src/mnode.c
source/dnode/mnode/impl/src/mnode.c
+0
-4
tests/CMakeLists.txt
tests/CMakeLists.txt
+1
-1
tests/test/c/CMakeLists.txt
tests/test/c/CMakeLists.txt
+8
-52
tests/test/c/create_table.c
tests/test/c/create_table.c
+5
-4
tools/shell/CMakeLists.txt
tools/shell/CMakeLists.txt
+0
-2
未找到文件。
source/dnode/mnode/impl/src/mnode.c
浏览文件 @
89a0dd76
...
...
@@ -202,8 +202,6 @@ static int32_t mndExecSteps(SMnode *pMnode) {
SMnodeStep
*
pStep
=
taosArrayGet
(
pMnode
->
pSteps
,
pos
);
if
(
pStep
->
initFp
==
NULL
)
continue
;
// (*pMnode->reportProgress)(pStep->name, "start initialize");
if
((
*
pStep
->
initFp
)(
pMnode
)
!=
0
)
{
int32_t
code
=
terrno
;
mError
(
"step:%s exec failed since %s, start to cleanup"
,
pStep
->
name
,
terrstr
());
...
...
@@ -213,8 +211,6 @@ static int32_t mndExecSteps(SMnode *pMnode) {
}
else
{
mDebug
(
"step:%s is initialized"
,
pStep
->
name
);
}
// (*pMnode->reportProgress)(pStep->name, "initialize completed");
}
return
0
;
...
...
tests/CMakeLists.txt
浏览文件 @
89a0dd76
#ADD_SUBDIRECTORY(examples/c)
ADD_SUBDIRECTORY
(
tsim
)
#
ADD_SUBDIRECTORY(test/c)
ADD_SUBDIRECTORY
(
test/c
)
#ADD_SUBDIRECTORY(comparisonTest/tdengine)
tests/test/c/CMakeLists.txt
浏览文件 @
89a0dd76
CMAKE_MINIMUM_REQUIRED
(
VERSION 2.8...3.20
)
PROJECT
(
TDengine
)
INCLUDE_DIRECTORIES
(
${
TD_COMMUNITY_DIR
}
/src/inc
)
INCLUDE_DIRECTORIES
(
${
TD_COMMUNITY_DIR
}
/src/os/inc
)
INCLUDE_DIRECTORIES
(
${
TD_COMMUNITY_DIR
}
/src/util/inc
)
INCLUDE_DIRECTORIES
(
${
TD_COMMUNITY_DIR
}
/src/common/inc
)
INCLUDE_DIRECTORIES
(
${
TD_COMMUNITY_DIR
}
/src/query/inc
)
INCLUDE_DIRECTORIES
(
${
TD_COMMUNITY_DIR
}
/src/mnode/inc
)
INCLUDE_DIRECTORIES
(
${
TD_COMMUNITY_DIR
}
/src/tsdb/inc
)
INCLUDE_DIRECTORIES
(
${
TD_COMMUNITY_DIR
}
/src/plugins/http/inc
)
INCLUDE_DIRECTORIES
(
${
TD_COMMUNITY_DIR
}
/src/inc
)
INCLUDE_DIRECTORIES
(
${
TD_ENTERPRISE_DIR
}
/src/inc
)
IF
(
TD_LINUX
)
#add_executable(insertPerTable insertPerTable.c)
#target_link_libraries(insertPerTable taos_static pthread)
#add_executable(insertPerRow insertPerRow.c)
#target_link_libraries(insertPerRow taos_static pthread)
#add_executable(importOneRow importOneRow.c)
#target_link_libraries(importOneRow taos_static pthread)
#add_executable(importPerTable importPerTable.c)
#target_link_libraries(importPerTable taos_static pthread)
#add_executable(hashPerformance hashPerformance.c)
#target_link_libraries(hashPerformance taos_static tutil common pthread)
#add_executable(createTablePerformance createTablePerformance.c)
#target_link_libraries(createTablePerformance taos_static tutil common pthread)
#add_executable(createNormalTable createNormalTable.c)
#target_link_libraries(createNormalTable taos_static tutil common pthread)
#add_executable(queryPerformance queryPerformance.c)
#target_link_libraries(queryPerformance taos_static tutil common pthread)
#add_executable(httpTest httpTest.c)
#target_link_libraries(httpTest taos_static tutil common pthread mnode monitor http tsdb twal vnode cJson lz4)
#add_executable(cacheTest cacheTest.c)
#target_link_libraries(cacheTest taos_static tutil common pthread mnode monitor http tsdb twal vnode cJson lz4)
#add_executable(invalidTableId invalidTableId.c)
#target_link_libraries(invalidTableId taos_static tutil common pthread)
#add_executable(hashIterator hashIterator.c)
#target_link_libraries(hashIterator taos_static tutil common pthread)
ENDIF
()
add_executable
(
create_table create_table.c
)
target_link_libraries
(
create_table
PUBLIC taos
PUBLIC util
PUBLIC common
PUBLIC os
)
tests/test/c/create
NormalT
able.c
→
tests/test/c/create
_t
able.c
浏览文件 @
89a0dd76
...
...
@@ -14,13 +14,14 @@
*/
#define _DEFAULT_SOURCE
#include "../../../include/client/taos.h"
#include "hash.h"
#include "os.h"
#include "taos.h"
#include "taosdef.h"
#include "taoserror.h"
#include "tglobal.h"
#include "tulog.h"
#include "thash.h"
#include "tutil.h"
#include "ulog.h"
#define MAX_RANDOM_POINTS 20000
#define GREEN "\033[1;32m"
...
...
tools/shell/CMakeLists.txt
浏览文件 @
89a0dd76
aux_source_directory
(
src SHELL_SRC
)
list
(
REMOVE_ITEM SHELL_SRC src/shellWindows.c
)
list
(
REMOVE_ITEM SHELL_SRC src/shellDarwin.c
)
add_executable
(
shell
${
SHELL_SRC
}
)
target_link_libraries
(
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录