fix ci issue
This commit is contained in:
parent
0e2fe1554b
commit
88c03c8336
|
@ -33,7 +33,8 @@ int32_t getHashSortRowBuff(SStreamFileState* pFileState, const SWinKey* pKey, vo
|
||||||
|
|
||||||
SArray* pWinStates = NULL;
|
SArray* pWinStates = NULL;
|
||||||
SSHashObj* pSearchBuff = getSearchBuff(pFileState);
|
SSHashObj* pSearchBuff = getSearchBuff(pFileState);
|
||||||
addArrayBuffIfNotExist(pSearchBuff, pKey->groupId, &pWinStates);
|
code = addArrayBuffIfNotExist(pSearchBuff, pKey->groupId, &pWinStates);
|
||||||
|
QUERY_CHECK_CODE(code, lino, _end);
|
||||||
|
|
||||||
// recover
|
// recover
|
||||||
if (taosArrayGetSize(pWinStates) == 0 && needClearDiskBuff(pFileState)) {
|
if (taosArrayGetSize(pWinStates) == 0 && needClearDiskBuff(pFileState)) {
|
||||||
|
@ -55,7 +56,8 @@ int32_t getHashSortRowBuff(SStreamFileState* pFileState, const SWinKey* pKey, vo
|
||||||
streamStateFreeCur(pCur);
|
streamStateFreeCur(pCur);
|
||||||
}
|
}
|
||||||
|
|
||||||
addSearchItem(pFileState, pWinStates, pKey);
|
code = addSearchItem(pFileState, pWinStates, pKey);
|
||||||
|
QUERY_CHECK_CODE(code, lino, _end);
|
||||||
|
|
||||||
_end:
|
_end:
|
||||||
if (code != TSDB_CODE_SUCCESS) {
|
if (code != TSDB_CODE_SUCCESS) {
|
||||||
|
|
Loading…
Reference in New Issue