fix(stream): return value.
This commit is contained in:
parent
1e96ea4b54
commit
4173144ded
|
@ -213,9 +213,11 @@ static int32_t nextTupleWithGroupId(SSortHandle* pHandle, SSortOperatorInfo* pIn
|
|||
STupleHandle* retTuple = pInfo->pGroupIdCalc->pSavedTuple;
|
||||
if (!retTuple) {
|
||||
code = tsortNextTuple(pHandle, &retTuple);
|
||||
if (code) {
|
||||
qError("failed to get next tuple, code:%s", tstrerror(code));
|
||||
return code;
|
||||
}
|
||||
}
|
||||
|
||||
if (retTuple) {
|
||||
int32_t newGroup;
|
||||
|
|
Loading…
Reference in New Issue