Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
aa54dd78
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看板
提交
aa54dd78
编写于
3月 10, 2020
作者:
H
hzcheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
make client compile
上级
722abe2f
变更
19
隐藏空白更改
内联
并排
Showing
19 changed file
with
22 addition
and
20 deletion
+22
-20
src/CMakeLists.txt
src/CMakeLists.txt
+2
-2
src/client/inc/tscSQLParser.h
src/client/inc/tscSQLParser.h
+1
-1
src/client/src/tscFunctionImpl.c
src/client/src/tscFunctionImpl.c
+1
-1
src/client/src/tscLocal.c
src/client/src/tscLocal.c
+1
-1
src/client/src/tscParseInsert.c
src/client/src/tscParseInsert.c
+1
-1
src/client/src/tscSchemaUtil.c
src/client/src/tscSchemaUtil.c
+1
-1
src/kit/shell/src/shellEngine.c
src/kit/shell/src/shellEngine.c
+1
-1
src/query/inc/tast.h
src/query/inc/tast.h
+1
-1
src/query/inc/tsqlfunction.h
src/query/inc/tsqlfunction.h
+1
-1
src/query/inc/tvariant.h
src/query/inc/tvariant.h
+2
-0
src/query/src/textbuffer.c
src/query/src/textbuffer.c
+1
-1
src/query/src/tinterpolation.c
src/query/src/tinterpolation.c
+1
-1
src/query/src/tpercentile.c
src/query/src/tpercentile.c
+1
-1
src/query/src/tscAst.c
src/query/src/tscAst.c
+1
-1
src/query/src/tscSQLParserImpl.c
src/query/src/tscSQLParserImpl.c
+1
-1
src/query/src/tscSyntaxtreefunction.c
src/query/src/tscSyntaxtreefunction.c
+1
-1
src/query/src/ttokenizer.c
src/query/src/ttokenizer.c
+1
-1
src/query/src/tvariant.c
src/query/src/tvariant.c
+2
-2
src/util/inc/sskiplist.h
src/util/inc/sskiplist.h
+1
-1
未找到文件。
src/CMakeLists.txt
浏览文件 @
aa54dd78
...
...
@@ -7,8 +7,8 @@ ADD_SUBDIRECTORY(thirdparty)
ADD_SUBDIRECTORY
(
common
)
ADD_SUBDIRECTORY
(
util
)
#
ADD_SUBDIRECTORY(rpc)
#
ADD_SUBDIRECTORY(client)
ADD_SUBDIRECTORY
(
rpc
)
ADD_SUBDIRECTORY
(
client
)
# ADD_SUBDIRECTORY(kit)
# ADD_SUBDIRECTORY(plugins)
# ADD_SUBDIRECTORY(sdb)
...
...
src/client/inc/tscSQLParser.h
浏览文件 @
aa54dd78
...
...
@@ -23,7 +23,7 @@ extern "C" {
#include "taos.h"
#include "taosmsg.h"
#include "ttokendef.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#include "tvariant.h"
#include "qsqlparser.h"
...
...
src/client/src/tscFunctionImpl.c
浏览文件 @
aa54dd78
...
...
@@ -25,7 +25,7 @@
#include "tscompression.h"
#include "tsqlfunction.h"
#include "ttime.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#include "tutil.h"
#include "tpercentile.h"
...
...
src/client/src/tscLocal.c
浏览文件 @
aa54dd78
...
...
@@ -19,7 +19,7 @@
#include "tcache.h"
#include "tscUtil.h"
#include "tsclient.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#include "textbuffer.h"
#include "tscSecondaryMerge.h"
...
...
src/client/src/tscParseInsert.c
浏览文件 @
aa54dd78
...
...
@@ -25,7 +25,7 @@
#include "tschemautil.h"
#include "tsclient.h"
#include "ttokendef.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#include "tlog.h"
#include "tstoken.h"
...
...
src/client/src/tscSchemaUtil.c
浏览文件 @
aa54dd78
...
...
@@ -17,7 +17,7 @@
#include "taosmsg.h"
#include "tschemautil.h"
#include "ttokendef.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#include "tutil.h"
bool
isValidSchema
(
struct
SSchema
*
pSchema
,
int32_t
numOfCols
)
{
...
...
src/kit/shell/src/shellEngine.c
浏览文件 @
aa54dd78
...
...
@@ -21,7 +21,7 @@
#include "shellCommand.h"
#include "ttime.h"
#include "tutil.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#include "taoserror.h"
#include <regex.h>
...
...
src/query/inc/tast.h
浏览文件 @
aa54dd78
...
...
@@ -23,7 +23,7 @@ extern "C" {
#include "os.h"
#include "taosmsg.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#include "tvariant.h"
struct
tSQLBinaryExpr
;
...
...
src/query/inc/tsqlfunction.h
浏览文件 @
aa54dd78
...
...
@@ -24,7 +24,7 @@ extern "C" {
#include <stdint.h>
#include "trpc.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#include "tvariant.h"
#define TSDB_FUNC_INVALID_ID -1
...
...
src/query/inc/tvariant.h
浏览文件 @
aa54dd78
...
...
@@ -16,6 +16,8 @@
#ifndef TDENGINE_TVARIANT_H
#define TDENGINE_TVARIANT_H
#include "tstoken.h"
#ifdef __cplusplus
extern
"C"
{
#endif
...
...
src/query/src/textbuffer.c
浏览文件 @
aa54dd78
...
...
@@ -19,7 +19,7 @@
#include "tlog.h"
#include "tsqlfunction.h"
#include "ttime.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#include "tutil.h"
#define COLMODEL_GET_VAL(data, schema, allrow, rowId, colId) \
...
...
src/query/src/tinterpolation.c
浏览文件 @
aa54dd78
...
...
@@ -18,7 +18,7 @@
#include "textbuffer.h"
#include "tinterpolation.h"
#include "tsqlfunction.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#define INTERPOL_IS_ASC_INTERPOL(interp) ((interp)->order == TSQL_SO_ASC)
...
...
src/query/src/tpercentile.c
浏览文件 @
aa54dd78
...
...
@@ -18,7 +18,7 @@
#include "taosmsg.h"
#include "taosdef.h"
#include "tlog.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#include "tpercentile.h"
tExtMemBuffer
*
releaseBucketsExceptFor
(
tMemBucket
*
pMemBucket
,
int16_t
segIdx
,
int16_t
slotIdx
)
{
...
...
src/query/src/tscAst.c
浏览文件 @
aa54dd78
...
...
@@ -24,7 +24,7 @@
#include "tsqlfunction.h"
#include "tstoken.h"
#include "ttokendef.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#include "tutil.h"
#include "qsqlparser.h"
...
...
src/query/src/tscSQLParserImpl.c
浏览文件 @
aa54dd78
...
...
@@ -22,7 +22,7 @@
#include "tstoken.h"
#include "ttime.h"
#include "ttokendef.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#include "tutil.h"
int32_t
tSQLParse
(
SSqlInfo
*
pSQLInfo
,
const
char
*
pStr
)
{
...
...
src/query/src/tscSyntaxtreefunction.c
浏览文件 @
aa54dd78
...
...
@@ -16,7 +16,7 @@
#include "os.h"
#include "tscSyntaxtreefunction.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#include "tutil.h"
#define ARRAY_LIST_OP(left, right, _left_type, _right_type, len1, len2, out, op, _res_type, _ord) \
...
...
src/query/src/ttokenizer.c
浏览文件 @
aa54dd78
...
...
@@ -19,7 +19,7 @@
#include "shash.h"
#include "tstoken.h"
#include "ttokendef.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#include "tutil.h"
// All the keywords of the SQL language are stored in a hash table
...
...
src/query/src/tvariant.c
浏览文件 @
aa54dd78
...
...
@@ -19,10 +19,10 @@
#include "shash.h"
#include "tstoken.h"
#include "ttokendef.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#include "tutil.h"
#include "tvariant.h"
#include "t
types
.h"
#include "t
aosdef
.h"
#include "taos.h"
// todo support scientific expression number and oct number
...
...
src/util/inc/sskiplist.h
浏览文件 @
aa54dd78
...
...
@@ -28,7 +28,7 @@ extern "C" {
#include <stdlib.h>
#include "os.h"
#include "t
types
.h"
#include "t
aosdef
.h"
/*
* key of each node
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录