fix: memory count issue

This commit is contained in:
dapan1121 2023-03-28 19:42:09 +08:00
parent c5f37d284e
commit a0c8dd52b1
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ void tsdbMemTableCountRows(SMemTable *pMemTable, SHashObj* pTableMap, int
continue; continue;
} }
rowsNum += tsdbCountTbDataRows(pTbData); *rowsNum += tsdbCountTbDataRows(pTbData);
pTbData = pTbData->next; pTbData = pTbData->next;
} }
} }