提交 ef899a0c 编写于 作者: K kailixu

fix: delete index filter for desc query

上级 82b8c3c3
...@@ -1767,8 +1767,8 @@ static bool overlapWithDelSkyline(STableBlockScanInfo* pBlockScanInfo, const SDa ...@@ -1767,8 +1767,8 @@ static bool overlapWithDelSkyline(STableBlockScanInfo* pBlockScanInfo, const SDa
if (p->ts > pBlock->minKey.ts && index > 0) { if (p->ts > pBlock->minKey.ts && index > 0) {
index -= 1; index -= 1;
} else { // find the first point that is smaller than the minKey.ts of dataBlock. } else { // find the first point that is smaller than the minKey.ts of dataBlock.
if (p->version == 0 && p->ts == pBlock->minKey.ts) { if (p->ts == pBlock->minKey.ts && p->version < pBlock->maxVer && index > 0) {
index -= 1; // index always larger than 0 if p->version equals 0 index -= 1;
} }
break; break;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册