Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
417cf3c5
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
417cf3c5
编写于
8月 25, 2022
作者:
G
Ganlin Zhao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(query): fix valgrind report unitialized variable error
上级
847c0176
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
155 addition
and
155 deletion
+155
-155
source/libs/catalog/inc/catalogInt.h
source/libs/catalog/inc/catalogInt.h
+12
-12
source/libs/catalog/src/ctgAsync.c
source/libs/catalog/src/ctgAsync.c
+143
-143
未找到文件。
source/libs/catalog/inc/catalogInt.h
浏览文件 @
417cf3c5
...
...
@@ -188,7 +188,7 @@ typedef struct SCtgTbCache {
typedef
struct
SCtgVgCache
{
SRWLatch
vgLock
;
SDBVgInfo
*
vgInfo
;
SDBVgInfo
*
vgInfo
;
}
SCtgVgCache
;
typedef
struct
SCtgDBCache
{
...
...
@@ -224,7 +224,7 @@ typedef struct SCtgUserAuth {
}
SCtgUserAuth
;
typedef
struct
SCatalog
{
uint64_t
clusterId
;
uint64_t
clusterId
;
SHashObj
*
userCache
;
//key:user, value:SCtgUserAuth
SHashObj
*
dbCache
;
//key:dbname, value:SCtgDBCache
SCtgRentMgmt
dbRent
;
...
...
@@ -253,9 +253,9 @@ typedef struct SCtgJob {
int32_t
jobResCode
;
int32_t
taskIdx
;
SRWLatch
taskLock
;
uint64_t
queryId
;
SCatalog
*
pCtg
;
SCatalog
*
pCtg
;
SRequestConnInfo
conn
;
void
*
userParam
;
catalogCallback
userFp
;
...
...
@@ -279,7 +279,7 @@ typedef struct SCtgMsgCtx {
void
*
lastOut
;
void
*
out
;
char
*
target
;
SHashObj
*
pBatchs
;
SHashObj
*
pBatchs
;
}
SCtgMsgCtx
;
...
...
@@ -364,7 +364,7 @@ typedef struct SCtgCacheStat {
uint64_t
numOfMetaHit
;
uint64_t
numOfMetaMiss
;
uint64_t
numOfIndexHit
;
uint64_t
numOfIndexMiss
;
uint64_t
numOfIndexMiss
;
uint64_t
numOfUserHit
;
uint64_t
numOfUserMiss
;
uint64_t
numOfClear
;
...
...
@@ -451,7 +451,7 @@ typedef struct SCtgCacheOperation {
int32_t
opId
;
void
*
data
;
bool
syncOp
;
tsem_t
rspSem
;
tsem_t
rspSem
;
bool
stopQueue
;
bool
unLocked
;
}
SCtgCacheOperation
;
...
...
@@ -466,7 +466,7 @@ typedef struct SCtgQueue {
bool
stopQueue
;
SCtgQNode
*
head
;
SCtgQNode
*
tail
;
tsem_t
reqSem
;
tsem_t
reqSem
;
uint64_t
qRemainNum
;
}
SCtgQueue
;
...
...
@@ -475,7 +475,7 @@ typedef struct SCatalogMgmt {
int32_t
jobPool
;
SRWLatch
lock
;
SCtgQueue
queue
;
TdThread
updateThread
;
TdThread
updateThread
;
SHashObj
*
pCluster
;
//key: clusterId, value: SCatalog*
SCatalogStat
stat
;
SCatalogCfg
cfg
;
...
...
@@ -528,8 +528,8 @@ typedef struct SCtgOperation {
#define CTG_META_SIZE(pMeta) (sizeof(STableMeta) + ((pMeta)->tableInfo.numOfTags + (pMeta)->tableInfo.numOfColumns) * sizeof(SSchema))
#define CTG_TABLE_NOT_EXIST(code) (code == CTG_ERR_CODE_TABLE_NOT_EXIST)
#define CTG_DB_NOT_EXIST(code) (code == TSDB_CODE_MND_DB_NOT_EXIST)
#define CTG_TABLE_NOT_EXIST(code) (code == CTG_ERR_CODE_TABLE_NOT_EXIST)
#define CTG_DB_NOT_EXIST(code) (code == TSDB_CODE_MND_DB_NOT_EXIST)
#define ctgFatal(param, ...) qFatal("CTG:%p " param, pCtg, __VA_ARGS__)
#define ctgError(param, ...) qError("CTG:%p " param, pCtg, __VA_ARGS__)
...
...
@@ -576,7 +576,7 @@ typedef struct SCtgOperation {
} \
} while (0)
#define CTG_ERR_RET(c) do { int32_t _code = c; if (_code != TSDB_CODE_SUCCESS) { terrno = _code; return _code; } } while (0)
#define CTG_RET(c) do { int32_t _code = c; if (_code != TSDB_CODE_SUCCESS) { terrno = _code; } return _code; } while (0)
#define CTG_ERR_JRET(c) do { code = c; if (code != TSDB_CODE_SUCCESS) { terrno = code; goto _return; } } while (0)
...
...
source/libs/catalog/src/ctgAsync.c
浏览文件 @
417cf3c5
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录