未验证 提交 9c8c56c9 编写于 作者: S Shengliang Guan 提交者: GitHub

Merge pull request #3486 from taosdata/hotfix/1.6_query

[td-225] disable lastkeyfilter
......@@ -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;
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册