Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
b6bae78b
T
TDengine
项目概览
taosdata
/
TDengine
大约 2 年 前同步成功
通知
1192
Star
22018
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看板
提交
b6bae78b
编写于
4月 30, 2020
作者:
H
hjxilinx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[td-186] fix bug in super table join
上级
592899c9
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
23 addition
and
21 deletion
+23
-21
src/client/src/tscSubquery.c
src/client/src/tscSubquery.c
+23
-21
未找到文件。
src/client/src/tscSubquery.c
浏览文件 @
b6bae78b
...
...
@@ -299,7 +299,7 @@ int32_t tscLaunchSecondPhaseSubqueries(SSqlObj* pSql) {
pQueryInfo
->
tsBuf
=
pTSBuf
;
// transfer the ownership of timestamp comp-z data to the new created object
// set the second stage sub query for join process
pQueryInfo
->
type
|=
TSDB_QUERY_TYPE_JOIN_SEC_STAGE
;
TSDB_QUERY_SET_TYPE
(
pQueryInfo
->
type
,
TSDB_QUERY_TYPE_JOIN_SEC_STAGE
)
;
pQueryInfo
->
intervalTime
=
pSupporter
->
interval
;
pQueryInfo
->
groupbyExpr
=
pSupporter
->
groupbyExpr
;
...
...
@@ -438,7 +438,6 @@ static void tSIntersectionAndLaunchSecQuery(SJoinSupporter* pSupporter, SSqlObj*
int32_t
numOfTotal
=
pSupporter
->
pState
->
numOfTotal
;
int32_t
finished
=
atomic_add_fetch_32
(
&
pSupporter
->
pState
->
numOfCompleted
,
1
);
printf
(
"---------------------------------%d, total:%d
\n
"
,
finished
,
numOfTotal
);
if
(
finished
>=
numOfTotal
)
{
assert
(
finished
==
numOfTotal
);
...
...
@@ -861,14 +860,14 @@ void tscFetchDatablockFromSubquery(SSqlObj* pSql) {
SSqlRes
*
pRes
=
&
pSub
->
res
;
SQueryInfo
*
pQueryInfo
=
tscGetQueryInfoDetail
(
&
pSub
->
cmd
,
0
);
STableMetaInfo
*
pTableMetaInfo
=
tscGetMetaInfo
(
pQueryInfo
,
0
);
//
STableMetaInfo *pTableMetaInfo = tscGetMetaInfo(pQueryInfo, 0);
if
(
tscNonOrderedProjectionQueryOnSTable
(
pQueryInfo
,
0
))
{
if
(
pRes
->
row
>=
pRes
->
numOfRows
&&
pTableMetaInfo
->
vgroupIndex
<
pTableMetaInfo
->
vgroupList
->
numOfVgroups
&&
(
!
tscHasReachLimitation
(
pQueryInfo
,
pRes
))
&&
!
pRes
->
completed
)
{
numOfFetch
++
;
}
}
else
{
//
if (tscNonOrderedProjectionQueryOnSTable(pQueryInfo, 0)) {
//
if (pRes->row >= pRes->numOfRows && pTableMetaInfo->vgroupIndex < pTableMetaInfo->vgroupList->numOfVgroups &&
//
(!tscHasReachLimitation(pQueryInfo, pRes)) && !pRes->completed) {
//
numOfFetch++;
//
}
//
} else {
if
(
!
tscHasReachLimitation
(
pQueryInfo
,
pRes
))
{
if
(
pRes
->
row
>=
pRes
->
numOfRows
)
{
hasData
=
false
;
...
...
@@ -882,7 +881,7 @@ void tscFetchDatablockFromSubquery(SSqlObj* pSql) {
}
}
}
//
}
// has data remains in client side, and continue to return data to app
if
(
hasData
)
{
...
...
@@ -1010,10 +1009,10 @@ void tscJoinQueryCallback(void* param, TAOS_RES* tres, int code) {
}
if
(
code
!=
TSDB_CODE_SUCCESS
)
{
tscError
(
"%p sub query failed, code:%
d, set global code:%d, index:%d"
,
pSql
,
code
,
code
,
tscError
(
"%p sub query failed, code:%
s, set global code:%s, index:%d"
,
pSql
,
tstrerror
(
code
),
tstrerror
(
code
)
,
pSupporter
->
subqueryIndex
);
pSupporter
->
pState
->
code
=
code
;
// todo set the informative code
pSupporter
->
pState
->
code
=
code
;
quitAllSubquery
(
pParentSql
,
pSupporter
);
}
else
{
int32_t
numOfTotal
=
pSupporter
->
pState
->
numOfTotal
;
...
...
@@ -1856,7 +1855,7 @@ void tscBuildResFromSubqueries(SSqlObj *pSql) {
int32_t
numOfTableHasRes
=
0
;
for
(
int32_t
i
=
0
;
i
<
pSql
->
numOfSubs
;
++
i
)
{
if
(
pSql
->
pSubs
[
i
]
!=
0
)
{
if
(
pSql
->
pSubs
[
i
]
!=
NULL
)
{
numOfTableHasRes
++
;
}
}
...
...
@@ -1901,6 +1900,9 @@ void tscBuildResFromSubqueries(SSqlObj *pSql) {
}
free
(
pState
);
pRes
->
completed
=
true
;
// set query completed
sem_post
(
&
pSql
->
rspSem
);
return
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录