fix(last_row): fix empty table condition

This commit is contained in:
Minglei Jin 2024-06-07 13:47:04 +08:00
parent f1f80d57b8
commit 01e5e124fb
1 changed files with 7 additions and 7 deletions

View File

@ -1577,7 +1577,7 @@ static int32_t tsdbCacheLoadFromRaw(STsdb *pTsdb, tb_uid_t uid, SArray *pLastArr
if (/*!pTmpColArray*/ lastTmpIndexArray && !lastTmpColArray) { if (/*!pTmpColArray*/ lastTmpIndexArray && !lastTmpColArray) {
continue; continue;
} }
if (/*!pTmpColArray*/ lastrowTmpIndexArray && lastrowTmpColArray) { if (/*!pTmpColArray*/ lastrowTmpIndexArray && !lastrowTmpColArray) {
continue; continue;
} }