Merge pull request #26079 from taosdata/fix/TD-30310
fix(last_row): fix empty table condition
This commit is contained in:
commit
17ced955b7
|
@ -1577,7 +1577,7 @@ static int32_t tsdbCacheLoadFromRaw(STsdb *pTsdb, tb_uid_t uid, SArray *pLastArr
|
|||
if (/*!pTmpColArray*/ lastTmpIndexArray && !lastTmpColArray) {
|
||||
continue;
|
||||
}
|
||||
if (/*!pTmpColArray*/ lastrowTmpIndexArray && lastrowTmpColArray) {
|
||||
if (/*!pTmpColArray*/ lastrowTmpIndexArray && !lastrowTmpColArray) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue