Merge pull request #27856 from taosdata/fix/TD-31882-2

fix(tsdb/cache/read): comment lastTs out to load stt data
This commit is contained in:
Hongze Cheng 2024-09-13 17:06:06 +08:00 committed by GitHub
commit 55dc17e165
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -625,7 +625,7 @@ int32_t tsdbRetrieveCacheRows(void* pReader, SSDataBlock* pResBlock, const int32
} }
double cost = (taosGetTimestampUs() - st) / 1000.0; double cost = (taosGetTimestampUs() - st) / 1000.0;
if (cost > tsCacheLazyLoadThreshold) { if (cost > tsCacheLazyLoadThreshold) {
pr->lastTs = totalLastTs; // pr->lastTs = totalLastTs;
} }
} }
} }