Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
c26f9ff6
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看板
提交
c26f9ff6
编写于
10月 11, 2019
作者:
H
hjxilinx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
minor style changes
上级
fdfd05f2
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
16 addition
and
11 deletion
+16
-11
src/inc/sdb.h
src/inc/sdb.h
+0
-1
src/inc/tcache.h
src/inc/tcache.h
+2
-2
src/inc/textbuffer.h
src/inc/textbuffer.h
+4
-4
src/inc/tkey.h
src/inc/tkey.h
+9
-2
src/inc/ttypes.h
src/inc/ttypes.h
+1
-2
未找到文件。
src/inc/sdb.h
浏览文件 @
c26f9ff6
...
...
@@ -23,7 +23,6 @@ extern "C" {
#include "taosmsg.h"
#include "tsdb.h"
extern
uint32_t
sdbDebugFlag
;
extern
short
sdbPeerPort
;
extern
short
sdbSyncPort
;
extern
int
sdbMaxNodes
;
...
...
src/inc/tcache.h
浏览文件 @
c26f9ff6
...
...
@@ -49,10 +49,10 @@ void *taosAddDataIntoCache(void *handle, char *key, char *pData, int dataSize, i
* if it is referenced by other object, it will be remain in cache
* @param handle cache object
* @param data not the key, actually referenced data
* @param remove force model, reduce the ref count and move the data into
* @param
_
remove force model, reduce the ref count and move the data into
* pTrash
*/
void
taosRemoveDataFromCache
(
void
*
handle
,
void
**
data
,
bool
remove
);
void
taosRemoveDataFromCache
(
void
*
handle
,
void
**
data
,
bool
_
remove
);
/**
* update data in cache
...
...
src/inc/textbuffer.h
浏览文件 @
c26f9ff6
...
...
@@ -26,10 +26,10 @@ extern "C" {
#include "tutil.h"
#include "taosmsg.h"
#define DEFAULT_PAGE_SIZE 16384 // 16k larger than the SHistoInfo
#define MIN_BUFFER_SIZE (1 << 19)
#define MAX_TMPFILE_PATH_LENGTH
512
#define INITIAL_ALLOCATION_BUFFER_SIZE 64
#define DEFAULT_PAGE_SIZE
16384 // 16k larger than the SHistoInfo
#define MIN_BUFFER_SIZE
(1 << 19)
#define MAX_TMPFILE_PATH_LENGTH
PATH_MAX
#define INITIAL_ALLOCATION_BUFFER_SIZE
64
// forward declare
struct
tTagSchema
;
...
...
src/inc/tkey.h
浏览文件 @
c26f9ff6
...
...
@@ -12,9 +12,12 @@
* 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/>.
*/
#ifndef TDENGINE_TKEY_H
#define TDENGINE_TKEY_H
#ifndef _TAOS_KEY_H_
#define _TAOS_KEY_H_
#ifdef __cplusplus
extern
"C"
{
#endif
#include <stdbool.h>
#include <stdint.h>
...
...
@@ -27,4 +30,8 @@ char *base64_encode(const unsigned char *value, int vlen);
char
*
taosDesEncode
(
int64_t
key
,
char
*
src
,
int
len
);
char
*
taosDesDecode
(
int64_t
key
,
char
*
src
,
int
len
);
#ifdef __cplusplus
}
#endif
#endif
\ No newline at end of file
src/inc/ttypes.h
浏览文件 @
c26f9ff6
...
...
@@ -53,8 +53,7 @@ void setNullN(char *val, int32_t type, int32_t bytes, int32_t numOfElems);
void
assignVal
(
char
*
val
,
char
*
src
,
int32_t
len
,
int32_t
type
);
void
tsDataSwap
(
void
*
pLeft
,
void
*
pRight
,
int32_t
type
,
int32_t
size
);
// variant, each number/string/field_id has a corresponding struct during
// parsing sql
// variant, each number/string/field_id has a corresponding struct during parsing sql
typedef
struct
tVariant
{
uint32_t
nType
;
int32_t
nLen
;
// only used for string, for number, it is useless
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录