add log
This commit is contained in:
parent
5ace9b1d90
commit
6464077cec
|
@ -3486,10 +3486,11 @@ void streamScanOperatorDecode(void* pBuff, int32_t len, SStreamScanInfo* pInfo)
|
||||||
if (code == TSDB_CODE_SUCCESS) {
|
if (code == TSDB_CODE_SUCCESS) {
|
||||||
pInfo->stateStore.updateInfoDestroy(pInfo->pUpdateInfo);
|
pInfo->stateStore.updateInfoDestroy(pInfo->pUpdateInfo);
|
||||||
pInfo->pUpdateInfo = pUpInfo;
|
pInfo->pUpdateInfo = pUpInfo;
|
||||||
|
qDebug("%s line:%d. stream scan updateinfo deserialize success", __func__, __LINE__);
|
||||||
} else {
|
} else {
|
||||||
taosMemoryFree(pUpInfo);
|
taosMemoryFree(pUpInfo);
|
||||||
lino = __LINE__;
|
code = TSDB_CODE_SUCCESS;
|
||||||
goto _end;
|
qDebug("%s line:%d. stream scan did not have updateinfo", __func__, __LINE__);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tDecodeIsEnd(pDeCoder)) {
|
if (tDecodeIsEnd(pDeCoder)) {
|
||||||
|
|
|
@ -449,6 +449,7 @@ int32_t updateInfoSerialize(SEncoder* pEncoder, const SUpdateInfo* pInfo) {
|
||||||
code = TSDB_CODE_FAILED;
|
code = TSDB_CODE_FAILED;
|
||||||
QUERY_CHECK_CODE(code, lino, _end);
|
QUERY_CHECK_CODE(code, lino, _end);
|
||||||
}
|
}
|
||||||
|
uDebug("%s line:%d. it did not have updateinfo", __func__, __LINE__);
|
||||||
return TSDB_CODE_SUCCESS;
|
return TSDB_CODE_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue