fix iColHash null condition
This commit is contained in:
parent
f676926188
commit
ab10a1815d
|
@ -2534,7 +2534,7 @@ static int32_t tsdbCacheGetBatchFromMem(STsdb *pTsdb, tb_uid_t uid, SArray *pLas
|
||||||
}
|
}
|
||||||
tsdbRowClose(&rowIter);
|
tsdbRowClose(&rowIter);
|
||||||
|
|
||||||
if (tSimpleHashGetSize(iColHash) > 0) {
|
if (iColHash && tSimpleHashGetSize(iColHash) > 0) {
|
||||||
pRow = memRowIterGet(&iter, false, NULL, 0);
|
pRow = memRowIterGet(&iter, false, NULL, 0);
|
||||||
while (pRow) {
|
while (pRow) {
|
||||||
if (tSimpleHashGetSize(iColHash) == 0) {
|
if (tSimpleHashGetSize(iColHash) == 0) {
|
||||||
|
|
Loading…
Reference in New Issue