From fc6360c3feee7acde52131c4d57f48eecb884a4a Mon Sep 17 00:00:00 2001 From: hjxilinx Date: Tue, 31 Mar 2020 11:48:16 +0800 Subject: [PATCH] [TD-28] fix new bug for projection query. --- src/system/detail/src/vnodeQueryImpl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/system/detail/src/vnodeQueryImpl.c b/src/system/detail/src/vnodeQueryImpl.c index 85a8c1c64d..eb6edf6613 100644 --- a/src/system/detail/src/vnodeQueryImpl.c +++ b/src/system/detail/src/vnodeQueryImpl.c @@ -4021,6 +4021,7 @@ bool normalizedFirstQueryRange(bool dataInDisk, bool dataInCache, STableQuerySup if (nextKey != pQuery->skey) { if (!pRuntimeEnv->hasTimeWindow) { pQuery->skey = nextKey; // change the query skey + pQuery->lastKey = pQuery->skey; } return true; } else { -- GitLab