Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
16fe1e27
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看板
提交
16fe1e27
编写于
8月 18, 2021
作者:
W
wpan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix nested query bug
上级
35b82a64
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
25 addition
and
21 deletion
+25
-21
src/client/src/tscSubquery.c
src/client/src/tscSubquery.c
+11
-2
src/client/src/tscUtil.c
src/client/src/tscUtil.c
+14
-19
未找到文件。
src/client/src/tscSubquery.c
浏览文件 @
16fe1e27
...
@@ -2717,10 +2717,19 @@ void tscHandleSubqueryError(SRetrieveSupport *trsupport, SSqlObj *pSql, int numO
...
@@ -2717,10 +2717,19 @@ void tscHandleSubqueryError(SRetrieveSupport *trsupport, SSqlObj *pSql, int numO
if
(
!
TSDB_QUERY_HAS_TYPE
(
pQueryInfo
->
type
,
TSDB_QUERY_TYPE_JOIN_SEC_STAGE
))
{
if
(
!
TSDB_QUERY_HAS_TYPE
(
pQueryInfo
->
type
,
TSDB_QUERY_TYPE_JOIN_SEC_STAGE
))
{
int32_t
code
=
pParentSql
->
res
.
code
;
int32_t
code
=
pParentSql
->
res
.
code
;
SSqlObj
*
userSql
=
((
SRetrieveSupport
*
)
pParentSql
->
param
)
->
pParentSql
;
SSqlObj
*
userSql
=
NULL
;
if
(
pParentSql
->
param
)
{
userSql
=
((
SRetrieveSupport
*
)
pParentSql
->
param
)
->
pParentSql
;
}
if
(
userSql
==
NULL
)
{
userSql
=
pParentSql
;
}
if
((
code
==
TSDB_CODE_TDB_INVALID_TABLE_ID
||
code
==
TSDB_CODE_VND_INVALID_VGROUP_ID
)
&&
userSql
->
retry
<
userSql
->
maxRetry
)
{
if
((
code
==
TSDB_CODE_TDB_INVALID_TABLE_ID
||
code
==
TSDB_CODE_VND_INVALID_VGROUP_ID
)
&&
userSql
->
retry
<
userSql
->
maxRetry
)
{
tscFreeRetrieveSup
(
pParentSql
);
if
(
userSql
!=
pParentSql
)
{
tscFreeRetrieveSup
(
pParentSql
);
}
tscFreeSubobj
(
userSql
);
tscFreeSubobj
(
userSql
);
tfree
(
userSql
->
pSubs
);
tfree
(
userSql
->
pSubs
);
...
...
src/client/src/tscUtil.c
浏览文件 @
16fe1e27
...
@@ -3747,8 +3747,7 @@ static void tscSubqueryCompleteCallback(void* param, TAOS_RES* tres, int code) {
...
@@ -3747,8 +3747,7 @@ static void tscSubqueryCompleteCallback(void* param, TAOS_RES* tres, int code) {
int32_t
index
=
ps
->
subqueryIndex
;
int32_t
index
=
ps
->
subqueryIndex
;
bool
ret
=
subAndCheckDone
(
pSql
,
pParentSql
,
index
);
bool
ret
=
subAndCheckDone
(
pSql
,
pParentSql
,
index
);
tfree
(
ps
);
tscFreeRetrieveSup
(
pSql
);
pSql
->
param
=
NULL
;
if
(
!
ret
)
{
if
(
!
ret
)
{
tscDebug
(
"0x%"
PRIx64
" sub:0x%"
PRIx64
" orderOfSub:%d completed, not all subquery finished"
,
pParentSql
->
self
,
pSql
->
self
,
index
);
tscDebug
(
"0x%"
PRIx64
" sub:0x%"
PRIx64
" orderOfSub:%d completed, not all subquery finished"
,
pParentSql
->
self
,
pSql
->
self
,
index
);
...
@@ -3758,41 +3757,37 @@ static void tscSubqueryCompleteCallback(void* param, TAOS_RES* tres, int code) {
...
@@ -3758,41 +3757,37 @@ static void tscSubqueryCompleteCallback(void* param, TAOS_RES* tres, int code) {
// todo refactor
// todo refactor
tscDebug
(
"0x%"
PRIx64
" all subquery response received, retry"
,
pParentSql
->
self
);
tscDebug
(
"0x%"
PRIx64
" all subquery response received, retry"
,
pParentSql
->
self
);
SSqlObj
*
userSql
=
((
SRetrieveSupport
*
)
pParentSql
->
param
)
->
pParentSql
;
if
(
code
&&
!
((
code
==
TSDB_CODE_TDB_INVALID_TABLE_ID
||
code
==
TSDB_CODE_VND_INVALID_VGROUP_ID
)
&&
pParentSql
->
retry
<
pParentSql
->
maxRetry
))
{
tscFreeRetrieveSup
(
pParentSql
);
if
(
code
&&
!
((
code
==
TSDB_CODE_TDB_INVALID_TABLE_ID
||
code
==
TSDB_CODE_VND_INVALID_VGROUP_ID
)
&&
userSql
->
retry
<
userSql
->
maxRetry
))
{
tscAsyncResultOnError
(
pParentSql
);
tscAsyncResultOnError
(
pParentSql
);
return
;
return
;
}
}
tscFreeSubobj
(
user
Sql
);
tscFreeSubobj
(
pParent
Sql
);
tfree
(
user
Sql
->
pSubs
);
tfree
(
pParent
Sql
->
pSubs
);
user
Sql
->
res
.
code
=
TSDB_CODE_SUCCESS
;
pParent
Sql
->
res
.
code
=
TSDB_CODE_SUCCESS
;
user
Sql
->
retry
++
;
pParent
Sql
->
retry
++
;
tscDebug
(
"0x%"
PRIx64
" retry parse sql and send query, prev error: %s, retry:%d"
,
user
Sql
->
self
,
tscDebug
(
"0x%"
PRIx64
" retry parse sql and send query, prev error: %s, retry:%d"
,
pParent
Sql
->
self
,
tstrerror
(
code
),
user
Sql
->
retry
);
tstrerror
(
code
),
pParent
Sql
->
retry
);
tscResetSqlCmd
(
&
user
Sql
->
cmd
,
true
);
tscResetSqlCmd
(
&
pParent
Sql
->
cmd
,
true
);
code
=
tsParseSql
(
user
Sql
,
true
);
code
=
tsParseSql
(
pParent
Sql
,
true
);
if
(
code
==
TSDB_CODE_TSC_ACTION_IN_PROGRESS
)
{
if
(
code
==
TSDB_CODE_TSC_ACTION_IN_PROGRESS
)
{
return
;
return
;
}
}
if
(
code
!=
TSDB_CODE_SUCCESS
)
{
if
(
code
!=
TSDB_CODE_SUCCESS
)
{
user
Sql
->
res
.
code
=
code
;
pParent
Sql
->
res
.
code
=
code
;
tscAsyncResultOnError
(
user
Sql
);
tscAsyncResultOnError
(
pParent
Sql
);
return
;
return
;
}
}
SQueryInfo
*
pQueryInfo
=
tscGetQueryInfo
(
&
user
Sql
->
cmd
);
SQueryInfo
*
pQueryInfo
=
tscGetQueryInfo
(
&
pParent
Sql
->
cmd
);
executeQuery
(
user
Sql
,
pQueryInfo
);
executeQuery
(
pParent
Sql
,
pQueryInfo
);
return
;
return
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录