Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
0af316ce
T
TDengine
项目概览
慢慢CG
/
TDengine
与 Fork 源项目一致
Fork自
taosdata / TDengine
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
0af316ce
编写于
10月 19, 2020
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor
上级
d8e0d05a
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
0 addition
and
31 deletion
+0
-31
src/tsdb/src/tsdbCommit.c
src/tsdb/src/tsdbCommit.c
+0
-7
src/tsdb/src/tsdbFile.c
src/tsdb/src/tsdbFile.c
+0
-4
src/tsdb/src/tsdbMain.c
src/tsdb/src/tsdbMain.c
+0
-5
src/tsdb/src/tsdbMemTable.c
src/tsdb/src/tsdbMemTable.c
+0
-3
src/tsdb/src/tsdbMeta.c
src/tsdb/src/tsdbMeta.c
+0
-1
src/tsdb/src/tsdbRead.c
src/tsdb/src/tsdbRead.c
+0
-2
src/tsdb/src/tsdbReadUtil.c
src/tsdb/src/tsdbReadUtil.c
+0
-6
src/tsdb/src/tsdbUtil.c
src/tsdb/src/tsdbUtil.c
+0
-3
未找到文件。
src/tsdb/src/tsdbCommit.c
浏览文件 @
0af316ce
...
@@ -13,13 +13,6 @@
...
@@ -13,13 +13,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
*/
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <limits.h>
#include <sys/stat.h>
#include <sys/types.h>
#include "tchecksum.h"
#include "tchecksum.h"
#include "tscompression.h"
#include "tscompression.h"
#include "tsdbMain.h"
#include "tsdbMain.h"
...
...
src/tsdb/src/tsdbFile.c
浏览文件 @
0af316ce
...
@@ -13,11 +13,7 @@
...
@@ -13,11 +13,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
*/
#define _DEFAULT_SOURCE
#define _DEFAULT_SOURCE
#include <dirent.h>
#include <errno.h>
#include <inttypes.h>
#include <regex.h>
#include <regex.h>
#include <sys/types.h>
#define TAOS_RANDOM_FILE_FAIL_TEST
#define TAOS_RANDOM_FILE_FAIL_TEST
...
...
src/tsdb/src/tsdbMain.c
浏览文件 @
0af316ce
...
@@ -12,11 +12,6 @@
...
@@ -12,11 +12,6 @@
* You should have received a copy of the GNU Affero General Public License
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
*/
#include <dirent.h>
#include <errno.h>
#include <inttypes.h>
#include <sys/types.h>
// no test file errors here
// no test file errors here
#include "tsdbMain.h"
#include "tsdbMain.h"
#include "os.h"
#include "os.h"
...
...
src/tsdb/src/tsdbMemTable.c
浏览文件 @
0af316ce
...
@@ -12,9 +12,6 @@
...
@@ -12,9 +12,6 @@
* You should have received a copy of the GNU Affero General Public License
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
*/
#include <errno.h>
#include <inttypes.h>
#include "tsdb.h"
#include "tsdb.h"
#include "tsdbMain.h"
#include "tsdbMain.h"
...
...
src/tsdb/src/tsdbMeta.c
浏览文件 @
0af316ce
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
* You should have received a copy of the GNU Affero General Public License
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
*/
#include <stdlib.h>
#include "hash.h"
#include "hash.h"
#include "taosdef.h"
#include "taosdef.h"
#include "tchecksum.h"
#include "tchecksum.h"
...
...
src/tsdb/src/tsdbRead.c
浏览文件 @
0af316ce
...
@@ -12,8 +12,6 @@
...
@@ -12,8 +12,6 @@
* You should have received a copy of the GNU Affero General Public License
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
*/
#include <inttypes.h>
#include "os.h"
#include "os.h"
#include "tulog.h"
#include "tulog.h"
#include "talgo.h"
#include "talgo.h"
...
...
src/tsdb/src/tsdbReadUtil.c
浏览文件 @
0af316ce
...
@@ -12,12 +12,6 @@
...
@@ -12,12 +12,6 @@
* You should have received a copy of the GNU Affero General Public License
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
*/
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <sys/stat.h>
#include <sys/types.h>
#include "tchecksum.h"
#include "tchecksum.h"
#include "tdataformat.h"
#include "tdataformat.h"
#include "tscompression.h"
#include "tscompression.h"
...
...
src/tsdb/src/tsdbUtil.c
浏览文件 @
0af316ce
...
@@ -12,9 +12,6 @@
...
@@ -12,9 +12,6 @@
* You should have received a copy of the GNU Affero General Public License
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
*/
#include "libgen.h"
#include "stdio.h"
#include "tsdbMain.h"
#include "tsdbMain.h"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录