Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
16e0a12f
TDengine
项目概览
taosdata
/
TDengine
大约 2 年 前同步成功
通知
1192
Star
22018
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看板
提交
16e0a12f
编写于
5月 09, 2020
作者:
L
lihui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-161]
上级
243139b8
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
19 addition
and
6 deletion
+19
-6
src/client/src/tscAsync.c
src/client/src/tscAsync.c
+6
-5
src/client/src/tscUtil.c
src/client/src/tscUtil.c
+8
-1
src/system/detail/src/vnodeRead.c
src/system/detail/src/vnodeRead.c
+3
-0
src/util/src/tcache.c
src/util/src/tcache.c
+2
-0
未找到文件。
src/client/src/tscAsync.c
浏览文件 @
16e0a12f
...
...
@@ -494,6 +494,12 @@ void tscMeterMetaCallBack(void *param, TAOS_RES *res, int code) {
if
((
pQueryInfo
->
type
&
TSDB_QUERY_TYPE_STABLE_SUBQUERY
)
==
TSDB_QUERY_TYPE_STABLE_SUBQUERY
)
{
SMeterMetaInfo
*
pMeterMetaInfo
=
tscGetMeterMetaInfoFromQueryInfo
(
pQueryInfo
,
0
);
code
=
tscGetMeterMeta
(
pSql
,
pMeterMetaInfo
);
pRes
->
code
=
code
;
if
(
code
==
TSDB_CODE_ACTION_IN_PROGRESS
)
return
;
assert
(
pMeterMetaInfo
->
pMeterMeta
->
numOfTags
!=
0
&&
pMeterMetaInfo
->
vnodeIndex
>=
0
&&
pSql
->
param
!=
NULL
);
SRetrieveSupport
*
trs
=
(
SRetrieveSupport
*
)
pSql
->
param
;
...
...
@@ -504,11 +510,6 @@ void tscMeterMetaCallBack(void *param, TAOS_RES *res, int code) {
tscTrace
(
"%p get metricMeta during super table query successfully"
,
pSql
);
code
=
tscGetMeterMeta
(
pSql
,
pMeterMetaInfo
);
pRes
->
code
=
code
;
if
(
code
==
TSDB_CODE_ACTION_IN_PROGRESS
)
return
;
code
=
tscGetMetricMeta
(
pSql
,
0
);
pRes
->
code
=
code
;
...
...
src/client/src/tscUtil.c
浏览文件 @
16e0a12f
...
...
@@ -2064,7 +2064,14 @@ SSqlObj* createSubqueryObj(SSqlObj* pSql, int16_t tableIndex, void (*fp)(), void
pMeterMetaInfo
->
tagColumnIndex
);
}
assert
(
pFinalInfo
->
pMeterMeta
!=
NULL
&&
pNewQueryInfo
->
numOfTables
==
1
);
if
(
pFinalInfo
->
pMeterMeta
==
NULL
)
{
tscError
(
"%p new subquery failed for get pMeterMeta is NULL from cache"
,
pSql
);
tscFreeSqlObj
(
pNew
);
return
NULL
;
}
assert
(
pNewQueryInfo
->
numOfTables
==
1
);
if
(
UTIL_METER_IS_SUPERTABLE
(
pMeterMetaInfo
))
{
assert
(
pFinalInfo
->
pMetricMeta
!=
NULL
);
}
...
...
src/system/detail/src/vnodeRead.c
浏览文件 @
16e0a12f
...
...
@@ -496,6 +496,9 @@ void vnodeDecRefCount(void *param) {
assert
(
vnodeIsQInfoValid
(
pQInfo
));
int32_t
ref
=
atomic_sub_fetch_32
(
&
pQInfo
->
refCount
,
1
);
if
(
ref
<
0
)
{
return
;
// avoid two threads dec ref count
}
assert
(
ref
>=
0
);
dTrace
(
"QInfo:%p decrease obj refcount, %d"
,
pQInfo
,
ref
);
...
...
src/util/src/tcache.c
浏览文件 @
16e0a12f
...
...
@@ -587,6 +587,8 @@ void *taosAddDataIntoCache(void *handle, char *key, char *pData, int dataSize, i
"size:%"
PRId64
" bytes, collision:%d"
,
pNode
->
key
,
pNode
,
HASH_INDEX
(
pNode
->
hashVal
,
pObj
->
capacity
),
pNode
->
addTime
,
pNode
->
time
,
pObj
->
size
,
pObj
->
totalSize
,
pObj
->
statistics
.
numOfCollision
);
}
else
{
pError
(
"key:%s failed to added into cache, out of memory"
,
key
);
}
}
else
{
// old data exists, update the node
pNode
=
taosUpdateCacheImpl
(
pObj
,
pOldNode
,
key
,
keyLen
,
pData
,
dataSize
,
keepTime
*
1000L
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录