diff --git a/src/system/detail/src/vnodeQueryImpl.c b/src/system/detail/src/vnodeQueryImpl.c index ec83eba049c37d8bf970a4dc5e60f871174c0f0a..94a54a4707dd26379ded6c808c28007d7ad96049 100644 --- a/src/system/detail/src/vnodeQueryImpl.c +++ b/src/system/detail/src/vnodeQueryImpl.c @@ -6922,12 +6922,12 @@ int32_t vnodeFilterQualifiedMeters(SQInfo *pQInfo, int32_t vid, tSidSet *pSidSet if (QUERY_IS_ASC_QUERY(pQuery)) { assert(skey >= pSupporter->rawSKey); - if (ekey < oldestKey || skey > pMeterObj->lastKeyOnFile) { + if (ekey < oldestKey/* || skey > pMeterObj->lastKeyOnFile*/) { continue; } } else { assert(skey <= pSupporter->rawSKey); - if (skey < oldestKey || ekey > pMeterObj->lastKeyOnFile) { + if (skey < oldestKey/* || ekey > pMeterObj->lastKeyOnFile*/) { continue; } }